From 2c9bfdfb1e631fe69dfd1e82f37a472fe50600ab Mon Sep 17 00:00:00 2001 From: nutbuster Date: Tue, 3 Aug 2021 11:29:47 +1000 Subject: [PATCH] Merge Fix --- game/screens.rpy | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/game/screens.rpy b/game/screens.rpy index 2d01c742..253ebf79 100644 --- a/game/screens.rpy +++ b/game/screens.rpy @@ -697,9 +697,9 @@ screen updates(): action ToggleScreenVariable('input_on') style_prefix "quick" if persistent.updateresult != "No new version is available": - textbutton _("Update Now!") activate_sound "audio/ui/uiNotification.wav" action [updater.Update(persistent.updateWebServer, force=False)] + textbutton _("{size=36}Update Now!\n{/size}") activate_sound "audio/ui/uiNotification.wav" action [updater.Update(persistent.updateWebServer, force=False)] else: - textbutton _("Update Now!") activate_sound "audio/ui/uiBack.wav" action [Notify("Nothing to update to!")] + textbutton _("{size=36}Update Now!\n{/size}") activate_sound "audio/ui/uiBack.wav" action [Notify("Nothing to update to!")] use extrasnavigation ## Load and Save screens #######################################################