mirror of
https://github.com/Anuken/Mindustry.git
synced 2024-12-22 22:34:03 +07:00
Minor about dialog fixes
This commit is contained in:
parent
899281abe1
commit
b1671f699d
@ -41,7 +41,7 @@ public class AboutDialog extends BaseDialog{
|
||||
ScrollPane pane = new ScrollPane(in);
|
||||
|
||||
for(LinkEntry link : Links.getLinks()){
|
||||
if((ios || OS.isMac || steam) && bannedItems.contains(link.name)){
|
||||
if((ios || steam) && bannedItems.contains(link.name)){
|
||||
continue;
|
||||
}
|
||||
|
||||
@ -50,7 +50,7 @@ public class AboutDialog extends BaseDialog{
|
||||
table.table(img -> {
|
||||
img.image().height(h - 5).width(40f).color(link.color);
|
||||
img.row();
|
||||
img.image().height(5).width(40f).color(link.color.cpy().mul(0.8f, 0.8f, 0.8f, 1f));
|
||||
img.image().height(5).width(40f).color(link.color.cpy().mul(0.6f, 0.6f, 0.8f, 1f));
|
||||
}).expandY();
|
||||
|
||||
table.table(i -> {
|
||||
@ -64,7 +64,7 @@ public class AboutDialog extends BaseDialog{
|
||||
inset.labelWrap(link.description).width(w - 100f - h).color(Color.lightGray).growX();
|
||||
}).padLeft(8);
|
||||
|
||||
table.button(Icon.link, Styles.clearNoneTogglei, () -> {
|
||||
table.button(Icon.link, Styles.clearNonei, () -> {
|
||||
if(link.name.equals("wiki")) Events.fire(Trigger.openWiki);
|
||||
|
||||
if(!Core.app.openURI(link.link)){
|
||||
|
@ -26,4 +26,4 @@ org.gradle.caching=true
|
||||
org.gradle.internal.http.socketTimeout=100000
|
||||
org.gradle.internal.http.connectionTimeout=100000
|
||||
android.enableR8.fullMode=false
|
||||
archash=d69ed6371a
|
||||
archash=d962d6078c
|
||||
|
Loading…
Reference in New Issue
Block a user