summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--core/src/com/ilotterytea/maxoning/screens/MenuScreen.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/src/com/ilotterytea/maxoning/screens/MenuScreen.java b/core/src/com/ilotterytea/maxoning/screens/MenuScreen.java
index 1d53a07..dbe9dff 100644
--- a/core/src/com/ilotterytea/maxoning/screens/MenuScreen.java
+++ b/core/src/com/ilotterytea/maxoning/screens/MenuScreen.java
@@ -385,7 +385,7 @@ public class MenuScreen implements Screen {
// Full screen:
Label fscLabel = new Label(game.locale.TranslatableText("options.fullscreen"), skin);
fscLabel.setAlignment(Align.left);
- videoCategory.add(fscLabel).width(optionsTable.getWidth() / 2f).padBottom(paddingBottom);
+ //videoCategory.add(fscLabel).width(optionsTable.getWidth() / 2f).padBottom(paddingBottom);
final TextButton fscButton = new TextButton((game.prefs.getBoolean("fullscreen", true)) ? "ON" : "OFF", skin);
@@ -406,7 +406,7 @@ public class MenuScreen implements Screen {
}
});
- videoCategory.add(fscButton).width(optionsTable.getWidth() / 2f).padBottom(paddingBottom).row();
+ //videoCategory.add(fscButton).width(optionsTable.getWidth() / 2f).padBottom(paddingBottom).row();
// - - - Switch the language - - -:
String[] fh4Locale = game.locale.getFileHandle().nameWithoutExtension().split("_");