This commit is contained in:
Anuken
2022-11-04 08:59:24 -04:00
parent 4e5bc8fc94
commit 9f0a1d863e
3 changed files with 3 additions and 3 deletions

View File

@@ -63,7 +63,7 @@ public class MapPlayDialog extends BaseDialog{
modes.button(mode.toString(), Styles.flatToggleMenut, () -> {
selectedGamemode = mode;
rules = map.applyRules(mode);
}).update(b -> b.setChecked(selectedGamemode == mode)).size(140f, 54f).disabled(!mode.valid(map));
}).update(b -> b.setChecked(selectedGamemode == mode)).size(140f, mobile ? 44f : 54f).disabled(!mode.valid(map));
if(i++ % 2 == 1) modes.row();
}
});