forked from Cavemanon/SnootGame
Remove trailing backspaces & vbox instead of grid
This commit is contained in:
@ -262,22 +262,22 @@ screen quick_menu():
|
|||||||
## Ensure this appears on top of other screens.
|
## Ensure this appears on top of other screens.
|
||||||
zorder 100
|
zorder 100
|
||||||
if quick_menu:
|
if quick_menu:
|
||||||
window:
|
window:
|
||||||
background "gui/namebox.png"
|
background "gui/namebox.png"
|
||||||
xpos 1.45
|
xpos 1.45
|
||||||
ypos 0.977
|
ypos 0.977
|
||||||
grid 1 4:
|
vbox:
|
||||||
style_prefix "quick"
|
style_prefix "quick"
|
||||||
xalign -0.005
|
xalign -0.005
|
||||||
yalign 0.010
|
yalign 0.010
|
||||||
|
|
||||||
use quick_buttons("gui/button/uioptionbuttons/template_idle.png", \
|
use quick_buttons("gui/button/uioptionbuttons/template_idle.png",
|
||||||
[ \
|
[
|
||||||
[ "Skip", Skip() ], \
|
[ "Skip", Skip() ],
|
||||||
[ "Save", ShowMenu('save') ], \
|
[ "Save", ShowMenu('save') ],
|
||||||
[ "Auto", Preference("auto-forward", "toggle") ], \
|
[ "Auto", Preference("auto-forward", "toggle") ],
|
||||||
[ "Load", ShowMenu('load') ] \
|
[ "Load", ShowMenu('load') ]
|
||||||
] )
|
] )
|
||||||
|
|
||||||
screen score_menu():
|
screen score_menu():
|
||||||
zorder 100
|
zorder 100
|
||||||
@ -419,13 +419,13 @@ screen main_menu():
|
|||||||
xpos 1885
|
xpos 1885
|
||||||
yalign 0.98
|
yalign 0.98
|
||||||
use main_menu_buttons("gui/button/menubuttons/template_idle.png",
|
use main_menu_buttons("gui/button/menubuttons/template_idle.png",
|
||||||
[ \
|
[
|
||||||
[ "Start", Start() ], \
|
[ "Start", Start() ],
|
||||||
[ "Mods", ShowMenu("mod_menu") ], \
|
[ "Mods", ShowMenu("mod_menu") ],
|
||||||
[ "Load", ShowMenu("load") ], \
|
[ "Load", ShowMenu("load") ],
|
||||||
[ "Options", ShowMenu("preferences") ], \
|
[ "Options", ShowMenu("preferences") ],
|
||||||
[ "Help & About", ShowMenu("extras") ], \
|
[ "Help & About", ShowMenu("extras") ],
|
||||||
[ "Quit", Quit(confirm=not main_menu) ] \
|
[ "Quit", Quit(confirm=not main_menu) ]
|
||||||
] )
|
] )
|
||||||
|
|
||||||
# if gui.show_name:
|
# if gui.show_name:
|
||||||
|
Reference in New Issue
Block a user