mirror of
https://git.cavemanon.xyz/Cavemanon/SnootGame.git
synced 2025-03-26 11:54:49 +01:00
Remove trailing backspaces & vbox instead of grid
This commit is contained in:
parent
c1e7fd2bbf
commit
76e3212bf1
1 changed files with 22 additions and 22 deletions
|
@ -262,22 +262,22 @@ screen quick_menu():
|
|||
## Ensure this appears on top of other screens.
|
||||
zorder 100
|
||||
if quick_menu:
|
||||
window:
|
||||
background "gui/namebox.png"
|
||||
xpos 1.45
|
||||
ypos 0.977
|
||||
grid 1 4:
|
||||
style_prefix "quick"
|
||||
xalign -0.005
|
||||
yalign 0.010
|
||||
window:
|
||||
background "gui/namebox.png"
|
||||
xpos 1.45
|
||||
ypos 0.977
|
||||
vbox:
|
||||
style_prefix "quick"
|
||||
xalign -0.005
|
||||
yalign 0.010
|
||||
|
||||
use quick_buttons("gui/button/uioptionbuttons/template_idle.png", \
|
||||
[ \
|
||||
[ "Skip", Skip() ], \
|
||||
[ "Save", ShowMenu('save') ], \
|
||||
[ "Auto", Preference("auto-forward", "toggle") ], \
|
||||
[ "Load", ShowMenu('load') ] \
|
||||
] )
|
||||
use quick_buttons("gui/button/uioptionbuttons/template_idle.png",
|
||||
[
|
||||
[ "Skip", Skip() ],
|
||||
[ "Save", ShowMenu('save') ],
|
||||
[ "Auto", Preference("auto-forward", "toggle") ],
|
||||
[ "Load", ShowMenu('load') ]
|
||||
] )
|
||||
|
||||
screen score_menu():
|
||||
zorder 100
|
||||
|
@ -419,13 +419,13 @@ screen main_menu():
|
|||
xpos 1885
|
||||
yalign 0.98
|
||||
use main_menu_buttons("gui/button/menubuttons/template_idle.png",
|
||||
[ \
|
||||
[ "Start", Start() ], \
|
||||
[ "Mods", ShowMenu("mod_menu") ], \
|
||||
[ "Load", ShowMenu("load") ], \
|
||||
[ "Options", ShowMenu("preferences") ], \
|
||||
[ "Help & About", ShowMenu("extras") ], \
|
||||
[ "Quit", Quit(confirm=not main_menu) ] \
|
||||
[
|
||||
[ "Start", Start() ],
|
||||
[ "Mods", ShowMenu("mod_menu") ],
|
||||
[ "Load", ShowMenu("load") ],
|
||||
[ "Options", ShowMenu("preferences") ],
|
||||
[ "Help & About", ShowMenu("extras") ],
|
||||
[ "Quit", Quit(confirm=not main_menu) ]
|
||||
] )
|
||||
|
||||
# if gui.show_name:
|
||||
|
|
Loading…
Add table
Reference in a new issue