diff --git a/core/src/com/unciv/MainMenuScreen.kt b/core/src/com/unciv/MainMenuScreen.kt index 3673ddf216..3ea954ec84 100644 --- a/core/src/com/unciv/MainMenuScreen.kt +++ b/core/src/com/unciv/MainMenuScreen.kt @@ -195,16 +195,16 @@ class MainMenuScreen: BaseScreen(), RecreateOnResize { game.popScreen() } - val helpButton = "?".toLabel(fontSize = 32) + val helpButton = "?".toLabel(fontSize = 48) .apply { setAlignment(Align.center) } - .surroundWithCircle(40f, color = ImageGetter.getBlue()) + .surroundWithCircle(60f, color = ImageGetter.getBlue()) .apply { actor.y -= 2.5f } // compensate font baseline (empirical) - .surroundWithCircle(42f, resizeActor = false) + .surroundWithCircle(64f, resizeActor = false) helpButton.touchable = Touchable.enabled helpButton.onActivation { openCivilopedia() } helpButton.keyShortcuts.add(Input.Keys.F1) - helpButton.addTooltip(KeyCharAndCode(Input.Keys.F1), 20f) - helpButton.setPosition(20f, 20f) + helpButton.addTooltip(KeyCharAndCode(Input.Keys.F1), 30f) + helpButton.setPosition(30f, 30f) stage.addActor(helpButton) }