diff options
author | Marcus Comstedt | 2014-01-11 17:44:51 +0100 |
---|---|---|
committer | Marcus Comstedt | 2014-01-11 17:48:34 +0100 |
commit | 9957965257b6781d34ac2c71e9773ebd972e3d73 (patch) | |
tree | 2dce83fe9841e4ba6bdd244b450ab60873f24f99 /gui/themes/scummclassic | |
parent | 24b1ff15ee5a05c66ebc4532f66b1616c405aadf (diff) | |
download | scummvm-rg350-9957965257b6781d34ac2c71e9773ebd972e3d73.tar.gz scummvm-rg350-9957965257b6781d34ac2c71e9773ebd972e3d73.tar.bz2 scummvm-rg350-9957965257b6781d34ac2c71e9773ebd972e3d73.zip |
GUI: Fix menu layout for low-res classic theme
Since clipping is now in place for strings, having text widgets which
are 4 pixels high will no longer work. Remade the layout to set better
heights, and remove some spacing instead.
Diffstat (limited to 'gui/themes/scummclassic')
-rw-r--r-- | gui/themes/scummclassic/classic_layout_lowres.stx | 77 |
1 files changed, 39 insertions, 38 deletions
diff --git a/gui/themes/scummclassic/classic_layout_lowres.stx b/gui/themes/scummclassic/classic_layout_lowres.stx index 802998df3c..506657ef31 100644 --- a/gui/themes/scummclassic/classic_layout_lowres.stx +++ b/gui/themes/scummclassic/classic_layout_lowres.stx @@ -687,50 +687,51 @@ </dialog> <dialog name = 'GlobalMenu' overlays = 'screen_center'> - <layout type = 'vertical' padding = '2, 2, 4, 6' center = 'true' spacing='6'> + <layout type = 'vertical' padding = '2, 2, 2, 6' center = 'true' spacing='0'> <widget name = 'Title' width = '160' - height = '4' + height = '12' /> <widget name = 'Version' width = '160' - height = '4' - /> - <space size = '1'/> - <widget name = 'Load' - width = '120' - height = '12' - /> - <widget name = 'Save' - width = '120' - height = '12' - /> - <space size = '1'/> - <widget name = 'Options' - width = '120' - height = '12' - /> - <widget name = 'Help' - width = '120' - height = '12' - /> - <widget name = 'About' - width = '120' - height = '12' - /> - <space size = '1'/> - <widget name = 'Resume' - width = '120' - height = '12' - /> - <widget name = 'RTL' - width = '120' - height = '12' - /> - <widget name = 'Quit' - width = '120' - height = '12' + height = '14' /> + <layout type = 'vertical' padding = '0, 0, 3, 0' center = 'true' spacing='6'> + <widget name = 'Load' + width = '120' + height = '12' + /> + <widget name = 'Save' + width = '120' + height = '12' + /> + <space size = '1'/> + <widget name = 'Options' + width = '120' + height = '12' + /> + <widget name = 'Help' + width = '120' + height = '12' + /> + <widget name = 'About' + width = '120' + height = '12' + /> + <space size = '1'/> + <widget name = 'Resume' + width = '120' + height = '12' + /> + <widget name = 'RTL' + width = '120' + height = '12' + /> + <widget name = 'Quit' + width = '120' + height = '12' + /> + </layout> </layout> </dialog> |