From 6e10937b8b0c1169cc2618c9fa112b7f911fbc2f Mon Sep 17 00:00:00 2001 From: nutbuster Date: Wed, 30 Jun 2021 12:00:16 +1000 Subject: [PATCH] Bigger Buttons --- game/screens.rpy | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/game/screens.rpy b/game/screens.rpy index 7fe8a73..3a64b8c 100644 --- a/game/screens.rpy +++ b/game/screens.rpy @@ -1528,11 +1528,12 @@ style pref_vbox: ## that uses fewer and bigger buttons that are easier to touch. screen quick_button(filename, label, function): button: - xmaximum 140 - ymaximum 0 - add filename xalign 0.5 yalign 0.5 - text label xalign 0.5 yalign 0.5 size 22 color "#000" + xmaximum 160 + ymaximum 100 action function + fixed: + add filename xalign 0.5 yalign 0.5 zoom 1.75 + text label xalign 0.5 yalign 0.5 size 42 color "#000000EE" screen quick_menu(): @@ -1542,7 +1543,7 @@ screen quick_menu(): hbox: style_prefix "quick" xalign 0.5 - yalign 0.9375 + yalign 0.975 use quick_button("gui/button/uioptionbuttons/template_idle.png", "Back", Rollback()) use quick_button("gui/button/uioptionbuttons/template_idle.png", "Skip", Skip()) #alternate Skip(fast=True, confirm=True)) use quick_button("gui/button/uioptionbuttons/template_idle.png", "Auto", Preference("auto-forward", "toggle"))