aboutsummaryrefslogtreecommitdiff
path: root/gui
diff options
context:
space:
mode:
Diffstat (limited to 'gui')
-rw-r--r--gui/ThemeEval.cpp4
-rw-r--r--gui/ThemeEval.h2
-rw-r--r--gui/ThemeLayout.cpp64
-rw-r--r--gui/ThemeLayout.h15
-rw-r--r--gui/ThemeParser.cpp23
-rw-r--r--gui/ThemeParser.h2
-rw-r--r--gui/themes/default.inc306
-rw-r--r--gui/themes/scummclassic.zipbin157670 -> 157827 bytes
-rw-r--r--gui/themes/scummclassic/classic_layout.stx146
-rw-r--r--gui/themes/scummclassic/classic_layout_lowres.stx160
-rw-r--r--gui/themes/scummmodern.zipbin287826 -> 287886 bytes
-rw-r--r--gui/themes/scummmodern/scummmodern_layout.stx183
-rw-r--r--gui/themes/scummmodern/scummmodern_layout_lowres.stx162
-rw-r--r--gui/themes/scummremastered.zipbin285870 -> 285930 bytes
-rw-r--r--gui/themes/scummremastered/remastered_layout.stx183
-rw-r--r--gui/themes/scummremastered/remastered_layout_lowres.stx162
16 files changed, 729 insertions, 683 deletions
diff --git a/gui/ThemeEval.cpp b/gui/ThemeEval.cpp
index 66b5db5fb7..3eede27cca 100644
--- a/gui/ThemeEval.cpp
+++ b/gui/ThemeEval.cpp
@@ -130,13 +130,13 @@ void ThemeEval::addDialog(const Common::String &name, const Common::String &over
setVar(var + ".Enabled", enabled ? 1 : 0);
}
-void ThemeEval::addLayout(ThemeLayout::LayoutType type, int spacing, bool center) {
+void ThemeEval::addLayout(ThemeLayout::LayoutType type, int spacing, ThemeLayout::ItemAlign itemAlign) {
ThemeLayout *layout = 0;
if (spacing == -1)
spacing = getVar("Globals.Layout.Spacing", 4);
- layout = new ThemeLayoutStacked(_curLayout.top(), type, spacing, center);
+ layout = new ThemeLayoutStacked(_curLayout.top(), type, spacing, itemAlign);
assert(layout);
diff --git a/gui/ThemeEval.h b/gui/ThemeEval.h
index 520c280427..57c3a7c082 100644
--- a/gui/ThemeEval.h
+++ b/gui/ThemeEval.h
@@ -75,7 +75,7 @@ public:
bool hasVar(const Common::String &name) { return _vars.contains(name) || _builtin.contains(name); }
void addDialog(const Common::String &name, const Common::String &overlays, bool enabled = true, int inset = 0);
- void addLayout(ThemeLayout::LayoutType type, int spacing, bool center = false);
+ void addLayout(ThemeLayout::LayoutType type, int spacing, ThemeLayout::ItemAlign itemAlign);
void addWidget(const Common::String &name, int w, int h, const Common::String &type, bool enabled = true, Graphics::TextAlign align = Graphics::kTextAlignLeft);
bool addImportedLayout(const Common::String &name);
void addSpace(int size);
diff --git a/gui/ThemeLayout.cpp b/gui/ThemeLayout.cpp
index eeaaf1e465..10347f0ab9 100644
--- a/gui/ThemeLayout.cpp
+++ b/gui/ThemeLayout.cpp
@@ -250,12 +250,11 @@ void ThemeLayoutMain::reflowLayout(Widget *widgetChain) {
}
void ThemeLayoutStacked::reflowLayoutVertical(Widget *widgetChain) {
- int curX, curY;
+ int curY;
int resize[8];
int rescount = 0;
bool fixedWidth = _w != -1;
- curX = _padding.left;
curY = _padding.top;
_h = _padding.top + _padding.bottom;
@@ -275,12 +274,6 @@ void ThemeLayoutStacked::reflowLayoutVertical(Widget *widgetChain) {
_children[i]->offsetY(curY);
- // Center child if it this has been requested *and* the space permits it.
- if (_centered && _children[i]->getWidth() < (_w - _padding.left - _padding.right) && _w != -1) {
- _children[i]->offsetX((_w >> 1) - (_children[i]->getWidth() >> 1));
- } else
- _children[i]->offsetX(curX);
-
// Advance the vertical offset by the height of the newest item, plus
// the item spacing value.
curY += _children[i]->getHeight() + _spacing;
@@ -302,6 +295,29 @@ void ThemeLayoutStacked::reflowLayoutVertical(Widget *widgetChain) {
_w = 0;
}
+ for (uint i = 0; i < _children.size(); ++i) {
+ switch (_itemAlign) {
+ case kItemAlignStart:
+ _children[i]->offsetX(_padding.left);
+ break;
+ case kItemAlignCenter:
+ // Center child if it this has been requested *and* the space permits it.
+ if (_children[i]->getWidth() < (_w - _padding.left - _padding.right)) {
+ _children[i]->offsetX((_w >> 1) - (_children[i]->getWidth() >> 1));
+ } else {
+ _children[i]->offsetX(_padding.left);
+ }
+ break;
+ case kItemAlignEnd:
+ _children[i]->offsetX(_w - _children[i]->getWidth() - _padding.right);
+ break;
+ case kItemAlignStretch:
+ _children[i]->offsetX(_padding.left);
+ _children[i]->setWidth(_w - _padding.left - _padding.right);
+ break;
+ }
+ }
+
// If there were any items with undetermined height, then compute and set
// their height now. We do so by determining how much space is left, and
// then distributing this equally over all items which need auto-resizing.
@@ -321,13 +337,12 @@ void ThemeLayoutStacked::reflowLayoutVertical(Widget *widgetChain) {
}
void ThemeLayoutStacked::reflowLayoutHorizontal(Widget *widgetChain) {
- int curX, curY;
+ int curX;
int resize[8];
int rescount = 0;
bool fixedHeight = _h != -1;
curX = _padding.left;
- curY = _padding.top;
_w = _padding.left + _padding.right;
for (uint i = 0; i < _children.size(); ++i) {
@@ -346,12 +361,6 @@ void ThemeLayoutStacked::reflowLayoutHorizontal(Widget *widgetChain) {
_children[i]->offsetX(curX);
- // Center child if it this has been requested *and* the space permits it.
- if (_centered && _children[i]->getHeight() < (_h - _padding.top - _padding.bottom) && _h != -1)
- _children[i]->offsetY((_h >> 1) - (_children[i]->getHeight() >> 1));
- else
- _children[i]->offsetY(curY);
-
// Advance the horizontal offset by the width of the newest item, plus
// the item spacing value.
curX += (_children[i]->getWidth() + _spacing);
@@ -373,6 +382,29 @@ void ThemeLayoutStacked::reflowLayoutHorizontal(Widget *widgetChain) {
_h = 0;
}
+ for (uint i = 0; i < _children.size(); ++i) {
+ switch (_itemAlign) {
+ case kItemAlignStart:
+ _children[i]->offsetY(_padding.top);
+ break;
+ case kItemAlignCenter:
+ // Center child if it this has been requested *and* the space permits it.
+ if (_children[i]->getHeight() < (_h - _padding.top - _padding.bottom)) {
+ _children[i]->offsetY((_h >> 1) - (_children[i]->getHeight() >> 1));
+ } else {
+ _children[i]->offsetY(_padding.top);
+ }
+ break;
+ case kItemAlignEnd:
+ _children[i]->offsetY(_h - _children[i]->getHeight() - _padding.bottom);
+ break;
+ case kItemAlignStretch:
+ _children[i]->offsetY(_padding.top);
+ _children[i]->setHeight(_w - _padding.top - _padding.bottom);
+ break;
+ }
+ }
+
// If there were any items with undetermined width, then compute and set
// their width now. We do so by determining how much space is left, and
// then distributing this equally over all items which need auto-resizing.
diff --git a/gui/ThemeLayout.h b/gui/ThemeLayout.h
index a99de5a99c..0bfe7f7f22 100644
--- a/gui/ThemeLayout.h
+++ b/gui/ThemeLayout.h
@@ -52,6 +52,14 @@ public:
kLayoutSpace
};
+ /// Cross-direction alignment of layout children.
+ enum ItemAlign {
+ kItemAlignStart, ///< Items are aligned to the left for vertical layouts or to the top for horizontal layouts
+ kItemAlignCenter, ///< Items are centered in the container
+ kItemAlignEnd, ///< Items are aligned to the right for vertical layouts or to the bottom for horizontal layouts
+ kItemAlignStretch ///< Items are resized to match the size of the layout in the cross-direction
+ };
+
ThemeLayout(ThemeLayout *p) :
_parent(p), _x(0), _y(0), _w(-1), _h(-1),
_defaultW(-1), _defaultH(-1),
@@ -167,11 +175,10 @@ protected:
class ThemeLayoutStacked : public ThemeLayout {
public:
- ThemeLayoutStacked(ThemeLayout *p, LayoutType type, int spacing, bool center) :
- ThemeLayout(p), _type(type), _centered(center) {
+ ThemeLayoutStacked(ThemeLayout *p, LayoutType type, int spacing, ItemAlign itemAlign) :
+ ThemeLayout(p), _type(type), _itemAlign(itemAlign) {
assert((type == kLayoutVertical) || (type == kLayoutHorizontal));
_spacing = spacing;
- _centered = center;
}
void reflowLayout(Widget *widgetChain) override {
@@ -208,7 +215,7 @@ protected:
}
const LayoutType _type;
- bool _centered;
+ ItemAlign _itemAlign;
int8 _spacing;
};
diff --git a/gui/ThemeParser.cpp b/gui/ThemeParser.cpp
index b92dd334f3..f48ba6b8ad 100644
--- a/gui/ThemeParser.cpp
+++ b/gui/ThemeParser.cpp
@@ -765,23 +765,36 @@ bool ThemeParser::parserCallback_import(ParserNode *node) {
bool ThemeParser::parserCallback_layout(ParserNode *node) {
int spacing = -1;
- bool center = false;
if (node->values.contains("spacing")) {
if (!parseIntegerKey(node->values["spacing"], 1, &spacing))
return false;
}
- (void)Common::parseBool(node->values["center"], center);
+ ThemeLayout::ItemAlign itemAlign = ThemeLayout::kItemAlignStart;
+
+ if (node->values.contains("align")) {
+ Common::String val = node->values["align"];
+ if (val == "start") {
+ itemAlign = ThemeLayout::kItemAlignStart;
+ } else if (val == "center") {
+ itemAlign = ThemeLayout::kItemAlignCenter;
+ } else if (val == "end") {
+ itemAlign = ThemeLayout::kItemAlignEnd;
+ } else if (val == "stretch") {
+ itemAlign = ThemeLayout::kItemAlignStretch;
+ } else {
+ return parserError("'" + val + "' is not a valid item alignment for a layout.");
+ }
+ }
if (node->values["type"] == "vertical")
- _theme->getEvaluator()->addLayout(GUI::ThemeLayout::kLayoutVertical, spacing, center);
+ _theme->getEvaluator()->addLayout(GUI::ThemeLayout::kLayoutVertical, spacing, itemAlign);
else if (node->values["type"] == "horizontal")
- _theme->getEvaluator()->addLayout(GUI::ThemeLayout::kLayoutHorizontal, spacing, center);
+ _theme->getEvaluator()->addLayout(GUI::ThemeLayout::kLayoutHorizontal, spacing, itemAlign);
else
return parserError("Invalid layout type. Only 'horizontal' and 'vertical' layouts allowed.");
-
if (node->values.contains("padding")) {
int paddingL, paddingR, paddingT, paddingB;
diff --git a/gui/ThemeParser.h b/gui/ThemeParser.h
index f55a24aa80..890a86d227 100644
--- a/gui/ThemeParser.h
+++ b/gui/ThemeParser.h
@@ -189,7 +189,7 @@ protected:
XML_PROP(inset, false)
XML_KEY(layout)
XML_PROP(type, true)
- XML_PROP(center, false)
+ XML_PROP(align, false)
XML_PROP(padding, false)
XML_PROP(spacing, false)
diff --git a/gui/themes/default.inc b/gui/themes/default.inc
index 90730e49db..8a56822ba9 100644
--- a/gui/themes/default.inc
+++ b/gui/themes/default.inc
@@ -1005,7 +1005,7 @@ const char *defaultXML1 = "<?xml version = '1.0'?>"
"/>"
"</globals>"
"<dialog name='Launcher' overlays='screen'>"
-"<layout type='vertical' center='true' padding='16,16,8,8'>"
+"<layout type='vertical' align='center' padding='16,16,8,8'>"
"<widget name='Version' "
"height='Globals.Line.Height' "
"textalign='center' "
@@ -1147,7 +1147,7 @@ const char *defaultXML1 = "<?xml version = '1.0'?>"
"type='SmallLabel' "
"/>"
"</layout>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='10' center='true'>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
"<widget name='grJoystickDeadzoneDesc' "
"type='OptionsLabel' "
"/>"
@@ -1167,7 +1167,7 @@ const char *defaultXML1 = "<?xml version = '1.0'?>"
"</dialog>"
"<dialog name='GlobalOptions_Graphics_Container' overlays='GlobalOptions_Graphics.Container'>"
"<layout type='vertical' padding='16,16,16,16' spacing='8'>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='10' center='true'>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
"<widget name='grModePopupDesc' "
"type='OptionsLabel' "
"/>"
@@ -1175,7 +1175,7 @@ const char *defaultXML1 = "<?xml version = '1.0'?>"
"type='PopUp' "
"/>"
"</layout>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='10' center='true'>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
"<widget name='grRenderPopupDesc' "
"type='OptionsLabel' "
"/>"
@@ -1183,7 +1183,7 @@ const char *defaultXML1 = "<?xml version = '1.0'?>"
"type='PopUp' "
"/>"
"</layout>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='10' center='true'>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
"<widget name='grStretchModePopupDesc' "
"type='OptionsLabel' "
"/>"
@@ -1204,7 +1204,7 @@ const char *defaultXML1 = "<?xml version = '1.0'?>"
"</dialog>"
"<dialog name='GlobalOptions_Shader' overlays='Dialog.GlobalOptions.TabWidget'>"
"<layout type='vertical' padding='16,16,16,16' spacing='8'>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='10' center='true'>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
"<widget name='grShaderPopUpDesc' "
"type='OptionsLabel' "
"/>"
@@ -1216,7 +1216,7 @@ const char *defaultXML1 = "<?xml version = '1.0'?>"
"</dialog>"
"<dialog name='GlobalOptions_Audio' overlays='Dialog.GlobalOptions.TabWidget'>"
"<layout type='vertical' padding='16,16,16,16' spacing='8'>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='10' center='true'>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
"<widget name='auMidiPopupDesc' "
"type='OptionsLabel' "
"/>"
@@ -1224,7 +1224,7 @@ const char *defaultXML1 = "<?xml version = '1.0'?>"
"type='PopUp' "
"/>"
"</layout>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='10' center='true'>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
"<widget name='auOPLPopupDesc' "
"type='OptionsLabel' "
"/>"
@@ -1296,7 +1296,7 @@ const char *defaultXML1 = "<?xml version = '1.0'?>"
"/>"
"</layout>"
"</layout>"
-"<layout type='vertical' padding='24,0,24,0' center='true'>"
+"<layout type='vertical' padding='24,0,24,0' align='center'>"
"<widget name='vcMuteCheckbox' "
"type='Checkbox' "
"/>"
@@ -1305,7 +1305,7 @@ const char *defaultXML1 = "<?xml version = '1.0'?>"
"</dialog>"
"<dialog name='GlobalOptions_MIDI' overlays='Dialog.GlobalOptions.TabWidget'>"
"<layout type='vertical' padding='16,16,16,16' spacing='8'>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='10' center='true'>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
"<widget name='auPrefGmPopupDesc' "
"type='OptionsLabel' "
"/>"
@@ -1313,7 +1313,7 @@ const char *defaultXML1 = "<?xml version = '1.0'?>"
"type='PopUp' "
"/>"
"</layout>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='10' center='true'>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
"<widget name='mcFontButton' "
"type='Button' "
"/>"
@@ -1348,7 +1348,7 @@ const char *defaultXML1 = "<?xml version = '1.0'?>"
"</dialog>"
"<dialog name='GlobalOptions_MT32' overlays='Dialog.GlobalOptions.TabWidget'>"
"<layout type='vertical' padding='16,16,16,16' spacing='8'>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='10' center='true'>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
"<widget name='auPrefMt32PopupDesc' "
"type='OptionsLabel' "
"/>"
@@ -1366,7 +1366,7 @@ const char *defaultXML1 = "<?xml version = '1.0'?>"
"</dialog>"
"<dialog name='GlobalOptions_Paths' overlays='Dialog.GlobalOptions.TabWidget'>"
"<layout type='vertical' padding='16,16,16,16' spacing='8'>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='10' center='true'>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
"<widget name='SaveButton' "
"type='Button' "
"/>"
@@ -1378,7 +1378,7 @@ const char *defaultXML1 = "<?xml version = '1.0'?>"
"width='Globals.Line.Height' "
"/>"
"</layout>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='10' center='true'>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
"<widget name='ThemeButton' "
"type='Button' "
"/>"
@@ -1390,7 +1390,7 @@ const char *defaultXML1 = "<?xml version = '1.0'?>"
"width='Globals.Line.Height' "
"/>"
"</layout>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='10' center='true'>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
"<widget name='ExtraButton' "
"type='Button' "
"/>"
@@ -1414,7 +1414,7 @@ const char *defaultXML1 = "<?xml version = '1.0'?>"
"</dialog>"
"<dialog name='GlobalOptions_Misc' overlays='Dialog.GlobalOptions.TabWidget'>"
"<layout type='vertical' padding='16,16,16,16' spacing='8'>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='10' center='true'>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
"<widget name='ThemeButton' "
"type='Button' "
"/>"
@@ -1422,7 +1422,7 @@ const char *defaultXML1 = "<?xml version = '1.0'?>"
"height='Globals.Line.Height' "
"/>"
"</layout>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='10' center='true'>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
"<widget name='RendererPopupDesc' "
"type='OptionsLabel' "
"/>"
@@ -1430,7 +1430,7 @@ const char *defaultXML1 = "<?xml version = '1.0'?>"
"type='PopUp' "
"/>"
"</layout>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='10' center='true'>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
"<widget name='AutosavePeriodPopupDesc' "
"type='OptionsLabel' "
"/>"
@@ -1438,7 +1438,7 @@ const char *defaultXML1 = "<?xml version = '1.0'?>"
"type='PopUp' "
"/>"
"</layout>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='10' center='true'>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
"<widget name='GuiLanguagePopupDesc' "
"type='OptionsLabel' "
"/>"
@@ -1446,17 +1446,17 @@ const char *defaultXML1 = "<?xml version = '1.0'?>"
"type='PopUp' "
"/>"
"</layout>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='10' center='true'>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
"<widget name='GuiLanguageUseGameLanguage' "
"type='Checkbox' "
"/>"
"</layout>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='10' center='true'>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
"<widget name='UseSystemDialogs' "
"type='Checkbox' "
"/>"
"</layout>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='10' center='true'>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
"<widget name='UpdatesPopupDesc' "
"type='OptionsLabel' "
"/>"
@@ -1492,7 +1492,7 @@ const char *defaultXML1 = "<?xml version = '1.0'?>"
"/>"
"</layout>"
"</layout>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='10' center='true'>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
"<layout type='vertical' padding='0,0,8,0' spacing='4'>"
"<widget name='StorageDisabledHint' "
"height='Globals.Line.Height' "
@@ -1502,7 +1502,7 @@ const char *defaultXML1 = "<?xml version = '1.0'?>"
"/>"
"</layout>"
"</layout>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='10' center='true'>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
"<layout type='vertical' padding='0,0,6,0' spacing='2'>"
"<widget name='StorageUsernameDesc' "
"type='CloudTabLabel' "
@@ -1520,7 +1520,7 @@ const char *defaultXML1 = "<?xml version = '1.0'?>"
"/>"
"</layout>"
"</layout>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='10' center='true'>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
"<layout type='vertical' padding='0,0,6,0' spacing='2'>"
"<widget name='StorageLastSyncDesc' "
"type='CloudTabLabel' "
@@ -1535,12 +1535,12 @@ const char *defaultXML1 = "<?xml version = '1.0'?>"
"/>"
"</layout>"
"</layout>"
-"<layout type='horizontal' padding='0,0,-4,0' spacing='10' center='true'>"
+"<layout type='horizontal' padding='0,0,-4,0' spacing='10' align='center'>"
"<widget name='StorageSyncHint' "
"height='Globals.Line.Height' "
"/>"
"</layout>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='10' center='true'>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
"<layout type='vertical' padding='0,0,6,0' spacing='4'>"
"<widget name='StorageDownloadHint' "
"height='Globals.Line.Height' "
@@ -1550,7 +1550,7 @@ const char *defaultXML1 = "<?xml version = '1.0'?>"
"/>"
"</layout>"
"</layout>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='10' center='true'>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
"<layout type='vertical' padding='0,0,8,0' spacing='4'>"
"<widget name='StorageDisconnectHint' "
"height='Globals.Line.Height' "
@@ -1565,7 +1565,7 @@ const char *defaultXML1 = "<?xml version = '1.0'?>"
"height='Globals.Line.Height' "
"/>"
"</layout>"
-"<layout type='horizontal' padding='0,0,-2,0' spacing='10' center='true'>"
+"<layout type='horizontal' padding='0,0,-2,0' spacing='10' align='center'>"
"<layout type='vertical' padding='0,0,2,0' spacing='4'>"
"<widget name='StorageWizardOpenLinkHint' "
"width='106' "
@@ -1579,12 +1579,12 @@ const char *defaultXML1 = "<?xml version = '1.0'?>"
"/>"
"</layout>"
"</layout>"
-"<layout type='horizontal' padding='0,0,-2,0' spacing='10' center='true'>"
+"<layout type='horizontal' padding='0,0,-2,0' spacing='10' align='center'>"
"<widget name='StorageWizardCodeHint' "
"height='Globals.Line.Height' "
"/>"
"</layout>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='10' center='true'>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
"<layout type='vertical' padding='0,0,-2,0' spacing='2'>"
"<widget name='StorageWizardCodeBox' "
"width='108' "
@@ -1597,7 +1597,7 @@ const char *defaultXML1 = "<?xml version = '1.0'?>"
"/>"
"</layout>"
"</layout>"
-"<layout type='horizontal' padding='0,0,-2,0' spacing='10' center='true'>"
+"<layout type='horizontal' padding='0,0,-2,0' spacing='10' align='center'>"
"<widget name='StorageWizardConnectButton' "
"type='Button' "
"/>"
@@ -1609,7 +1609,7 @@ const char *defaultXML1 = "<?xml version = '1.0'?>"
"</dialog>"
"<dialog name='GlobalOptions_Network' overlays='Dialog.GlobalOptions.TabWidget'>"
"<layout type='vertical' padding='16,16,16,16' spacing='8'>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='10' center='true'>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
"<widget name='RunServerButton' "
"type='Button' "
"/>"
@@ -1617,7 +1617,7 @@ const char *defaultXML1 = "<?xml version = '1.0'?>"
"height='Globals.Line.Height' "
"/>"
"</layout>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='10' center='true'>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
"<widget name='RootPathButton' "
"type='Button' "
"/>"
@@ -1629,7 +1629,7 @@ const char *defaultXML1 = "<?xml version = '1.0'?>"
"width='Globals.Line.Height' "
"/>"
"</layout>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='10' center='true'>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
"<widget name='ServerPortDesc' "
"type='OptionsLabel' "
"/>"
@@ -1642,7 +1642,7 @@ const char *defaultXML1 = "<?xml version = '1.0'?>"
"width='Globals.Line.Height' "
"/>"
"</layout>"
-"<layout type='vertical' padding='0,0,0,0' spacing='4' center='true'>"
+"<layout type='vertical' padding='0,0,0,0' spacing='4' align='center'>"
"<widget name='FeatureDescriptionLine1' "
"height='Globals.Line.Height' "
"/>"
@@ -1693,7 +1693,7 @@ const char *defaultXML1 = "<?xml version = '1.0'?>"
"</dialog>"
"<dialog name='GlobalOptions_Cloud_ConnectionWizard_Container' overlays='GlobalOptions_Cloud_ConnectionWizard.Container'>"
"<layout type='vertical' padding='16,16,16,16' spacing='0'>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='10' center='true'>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
"<layout type='vertical' padding='0,0,0,0' spacing='6'>"
"<widget name='Picture' "
"width='109' "
@@ -1724,7 +1724,7 @@ const char *defaultXML1 = "<?xml version = '1.0'?>"
"<widget name='ReturnLine2' "
"height='Globals.Line.Height' "
"/>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='4' center='true'>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='4' align='center'>"
"<widget name='CodeBox1' "
"width='70' "
"height='Globals.Line.Height' "
@@ -1742,7 +1742,7 @@ const char *defaultXML1 = "<?xml version = '1.0'?>"
"height='Globals.Line.Height' "
"/>"
"</layout>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='4' center='true'>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='4' align='center'>"
"<widget name='CodeBox5' "
"width='70' "
"height='Globals.Line.Height' "
@@ -1766,7 +1766,7 @@ const char *defaultXML1 = "<?xml version = '1.0'?>"
"<space size='6' />"
"</layout>"
"</layout>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='10' center='true'>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
"<widget name='CancelButton' "
"type='Button' "
"/>"
@@ -1788,7 +1788,7 @@ const char *defaultXML1 = "<?xml version = '1.0'?>"
"</layout>"
"</dialog>"
"<dialog name='KeysDialog' overlays='Dialog.GlobalOptions' shading='dim'>"
-"<layout type='vertical' padding='8,8,8,8' center='true'>"
+"<layout type='vertical' padding='8,8,8,8' align='center'>"
"<widget name='Action' "
"height='Globals.Line.Height' "
"/>"
@@ -1872,7 +1872,7 @@ const char *defaultXML1 = "<?xml version = '1.0'?>"
"</dialog>"
"<dialog name='GameOptions_Game' overlays='Dialog.GameOptions.TabWidget' shading='dim'>"
"<layout type='vertical' padding='16,16,16,16'>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='10' center='true'>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
"<widget name='Id' "
"type='OptionsLabel' "
"/>"
@@ -1880,7 +1880,7 @@ const char *defaultXML1 = "<?xml version = '1.0'?>"
"type='PopUp' "
"/>"
"</layout>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='10' center='true'>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
"<widget name='Name' "
"type='OptionsLabel' "
"/>"
@@ -1888,7 +1888,7 @@ const char *defaultXML1 = "<?xml version = '1.0'?>"
"type='PopUp' "
"/>"
"</layout>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='10' center='true'>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
"<widget name='LangPopupDesc' "
"type='OptionsLabel' "
"/>"
@@ -1896,7 +1896,7 @@ const char *defaultXML1 = "<?xml version = '1.0'?>"
"type='PopUp' "
"/>"
"</layout>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='10' center='true'>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
"<widget name='PlatformPopupDesc' "
"type='OptionsLabel' "
"/>"
@@ -1908,7 +1908,7 @@ const char *defaultXML1 = "<?xml version = '1.0'?>"
"</dialog>"
"<dialog name='GameOptions_Paths' overlays='Dialog.GameOptions.TabWidget' shading='dim'>"
"<layout type='vertical' padding='16,16,16,16'>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='10' center='true'>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
"<widget name='Savepath' "
"type='Button' "
"/>"
@@ -1920,7 +1920,7 @@ const char *defaultXML1 = "<?xml version = '1.0'?>"
"width='Globals.Line.Height' "
"/>"
"</layout>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='10' center='true'>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
"<widget name='Extrapath' "
"type='Button' "
"/>"
@@ -1932,7 +1932,7 @@ const char *defaultXML1 = "<?xml version = '1.0'?>"
"width='Globals.Line.Height' "
"/>"
"</layout>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='10' center='true'>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
"<widget name='Gamepath' "
"type='Button' "
"/>"
@@ -1968,7 +1968,7 @@ const char *defaultXML1 = "<?xml version = '1.0'?>"
"</layout>"
"</dialog>"
"<dialog name='GlobalMenu' overlays='screen_center'>"
-"<layout type='vertical' padding='16,16,16,16' center='true'>"
+"<layout type='vertical' padding='16,16,16,16' align='center'>"
"<widget name='Title' "
"width='210' "
"height='Globals.Line.Height' "
@@ -2017,7 +2017,7 @@ const char *defaultXML1 = "<?xml version = '1.0'?>"
"<dialog name='GlobalConfig' overlays='screen_center'>"
"<layout type='vertical' padding='8,8,8,8'>"
"<layout type='horizontal' padding='0,0,0,0'>"
-"<layout type='vertical' padding='0,0,0,0' center='true'>"
+"<layout type='vertical' padding='0,0,0,0' align='center'>"
"<layout type='horizontal' padding='0,0,0,0' spacing='8'>"
"<widget name='vcMusicText' "
"type='OptionsLabel' "
@@ -2052,7 +2052,7 @@ const char *defaultXML1 = "<?xml version = '1.0'?>"
"/>"
"</layout>"
"</layout>"
-"<layout type='vertical' padding='24,24,24,24' center='true'>"
+"<layout type='vertical' padding='24,24,24,24' align='center'>"
"<widget name='vcMuteCheckbox' "
"type='Checkbox' "
"width='80' "
@@ -2125,7 +2125,7 @@ const char *defaultXML1 = "<?xml version = '1.0'?>"
"<widget name='EnableTabCheckbox' "
"type='Checkbox' "
"/>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='10' center='true'>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
"<widget name='VoiceCountText' "
"type='OptionsLabel' "
"/>"
@@ -2137,7 +2137,7 @@ const char *defaultXML1 = "<?xml version = '1.0'?>"
"height='Globals.Line.Height' "
"/>"
"</layout>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='10' center='true'>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
"<widget name='LevelText' "
"type='OptionsLabel' "
"/>"
@@ -2149,7 +2149,7 @@ const char *defaultXML1 = "<?xml version = '1.0'?>"
"height='Globals.Line.Height' "
"/>"
"</layout>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='10' center='true'>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
"<widget name='SpeedText' "
"type='OptionsLabel' "
"/>"
@@ -2161,7 +2161,7 @@ const char *defaultXML1 = "<?xml version = '1.0'?>"
"height='Globals.Line.Height' "
"/>"
"</layout>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='10' center='true'>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
"<widget name='DepthText' "
"type='OptionsLabel' "
"/>"
@@ -2173,7 +2173,7 @@ const char *defaultXML1 = "<?xml version = '1.0'?>"
"height='Globals.Line.Height' "
"/>"
"</layout>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='10' center='true'>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
"<widget name='WaveFormTypeText' "
"type='OptionsLabel' "
"/>"
@@ -2188,7 +2188,7 @@ const char *defaultXML1 = "<?xml version = '1.0'?>"
"<widget name='EnableTabCheckbox' "
"type='Checkbox' "
"/>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='10' center='true'>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
"<widget name='RoomSizeText' "
"type='OptionsLabel' "
"/>"
@@ -2200,7 +2200,7 @@ const char *defaultXML1 = "<?xml version = '1.0'?>"
"height='Globals.Line.Height' "
"/>"
"</layout>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='10' center='true'>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
"<widget name='DampingText' "
"type='OptionsLabel' "
"/>"
@@ -2212,7 +2212,7 @@ const char *defaultXML1 = "<?xml version = '1.0'?>"
"height='Globals.Line.Height' "
"/>"
"</layout>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='10' center='true'>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
"<widget name='WidthText' "
"type='OptionsLabel' "
"/>"
@@ -2224,7 +2224,7 @@ const char *defaultXML1 = "<?xml version = '1.0'?>"
"height='Globals.Line.Height' "
"/>"
"</layout>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='10' center='true'>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
"<widget name='LevelText' "
"type='OptionsLabel' "
"/>"
@@ -2240,7 +2240,7 @@ const char *defaultXML1 = "<?xml version = '1.0'?>"
"</dialog>"
"<dialog name='FluidSynthSettings_Misc' overlays='Dialog.FluidSynthSettings.TabWidget'>"
"<layout type='vertical' padding='16,16,16,16' spacing='8'>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='10' center='true'>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
"<widget name='InterpolationText' "
"type='OptionsLabel' "
"/>"
@@ -2251,7 +2251,7 @@ const char *defaultXML1 = "<?xml version = '1.0'?>"
"</layout>"
"</dialog>"
"<dialog name='SaveLoadChooser' overlays='screen' inset='8' shading='dim'>"
-"<layout type='vertical' padding='8,8,8,32' center='true'>"
+"<layout type='vertical' padding='8,8,8,32' align='center'>"
"<layout type='horizontal' padding='0,0,0,0'>"
"<widget name='Title' "
"height='Globals.Line.Height' "
@@ -2293,7 +2293,7 @@ const char *defaultXML1 = "<?xml version = '1.0'?>"
"</layout>"
"</dialog>"
"<dialog name='SaveLoadCloudSyncProgress' overlays='screen_center' inset='8' shading='dim'>"
-"<layout type='vertical' padding='8,8,8,8' center='true'>"
+"<layout type='vertical' padding='8,8,8,8' align='center'>"
"<widget name='TitleText' "
"width='496' "
"height='Globals.Line.Height' "
@@ -2311,7 +2311,7 @@ const char *defaultXML1 = "<?xml version = '1.0'?>"
"textalign='center' "
"/>"
"<space size='1'/>"
-"<layout type='horizontal' padding='0,0,0,0' center='true' spacing='10'>"
+"<layout type='horizontal' padding='0,0,0,0' align='center' spacing='10'>"
"<widget name='Cancel' "
"width='150' "
"height='Globals.Button.Height' "
@@ -2344,7 +2344,7 @@ const char *defaultXML1 = "<?xml version = '1.0'?>"
"</layout>"
"</dialog>"
"<dialog name='RecorderDialog' overlays='screen' inset='8' shading='dim'>"
-"<layout type='vertical' padding='8,8,8,32' center='true'>"
+"<layout type='vertical' padding='8,8,8,32' align='center'>"
"<widget name='Title' "
"height='Globals.Line.Height' "
"/>"
@@ -2396,7 +2396,7 @@ const char *defaultXML1 = "<?xml version = '1.0'?>"
"</layout>"
"</dialog>"
"<dialog name='OnScreenDialog' overlays='screen_center'>"
-"<layout type='horizontal' spacing='5' padding='5,3,5,3' center='true'>"
+"<layout type='horizontal' spacing='5' padding='5,3,5,3' align='center'>"
"<widget name='StopButton' "
"width='32' "
"height='32' "
@@ -2420,7 +2420,7 @@ const char *defaultXML1 = "<?xml version = '1.0'?>"
"</layout>"
"</dialog>"
"<dialog name='EditRecordDialog' overlays='screen_center'>"
-"<layout type='vertical' padding='8,8,8,8' center='true'>"
+"<layout type='vertical' padding='8,8,8,8' align='center'>"
"<widget name='Title' "
"width='320' "
"height='Globals.Line.Height' "
@@ -2460,7 +2460,7 @@ const char *defaultXML1 = "<?xml version = '1.0'?>"
"</layout>"
"</dialog>"
"<dialog name='ScummHelp' overlays='screen_center'>"
-"<layout type='vertical' padding='8,8,8,8' center='true'>"
+"<layout type='vertical' padding='8,8,8,8' align='center'>"
"<widget name='Title' "
"width='320' "
"height='Globals.Line.Height' "
@@ -2483,7 +2483,7 @@ const char *defaultXML1 = "<?xml version = '1.0'?>"
"</layout>"
"</dialog>"
"<dialog name='LoomTownsDifficultyDialog' overlays='screen_center'>"
-"<layout type='vertical' padding='8,8,8,8' center='true'>"
+"<layout type='vertical' padding='8,8,8,8' align='center'>"
"<widget name='Description1' "
"width='320' "
"height='Globals.Line.Height' "
@@ -2503,7 +2503,7 @@ const char *defaultXML1 = "<?xml version = '1.0'?>"
"</layout>"
"</dialog>"
"<dialog name='MassAdd' overlays='screen_center' shading='dim'>"
-"<layout type='vertical' padding='8,8,32,8' center='true'>"
+"<layout type='vertical' padding='8,8,32,8' align='center'>"
"<widget name='DirProgressText' "
"width='480' "
"height='Globals.Line.Height' "
@@ -2527,8 +2527,8 @@ const char *defaultXML1 = "<?xml version = '1.0'?>"
"</layout>"
"</dialog>"
"<dialog name='KeyMapper' overlays='screen_center' shading='dim'>"
-"<layout type='vertical' padding='8,8,32,8' spacing='10' center='true'>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='10' center='true'>"
+"<layout type='vertical' padding='8,8,32,8' spacing='10' align='center'>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
"<widget name='PopupDesc' "
"type='OptionsLabel' "
"/>"
@@ -2548,7 +2548,7 @@ const char *defaultXML1 = "<?xml version = '1.0'?>"
"</layout>"
"</dialog>"
"<dialog name='Predictive' overlays='screen_center'>"
-"<layout type='vertical' padding='5,5,5,5' center='true'>"
+"<layout type='vertical' padding='5,5,5,5' align='center'>"
"<widget name='Headline' "
"height='Globals.Line.Height' "
"width='210' "
@@ -2732,7 +2732,7 @@ const char *defaultXML1 = "<?xml version = '1.0'?>"
"/>"
"</globals>"
"<dialog name='Launcher' overlays='screen'>"
-"<layout type='vertical' center='true' padding='6,6,2,2'>"
+"<layout type='vertical' align='center' padding='6,6,2,2'>"
"<widget name='Version' "
"height='Globals.Line.Height' "
"textalign='center' "
@@ -2873,7 +2873,7 @@ const char *defaultXML1 = "<?xml version = '1.0'?>"
"type='SmallLabel' "
"/>"
"</layout>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='10' center='true'>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
"<widget name='grJoystickDeadzoneDesc' "
"type='OptionsLabel' "
"/>"
@@ -2893,7 +2893,7 @@ const char *defaultXML1 = "<?xml version = '1.0'?>"
"</dialog>"
"<dialog name='GlobalOptions_Graphics_Container' overlays='GlobalOptions_Graphics.Container'>"
"<layout type='vertical' padding='16,16,16,16' spacing='8'>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='6' center='true'>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='6' align='center'>"
"<widget name='grModePopupDesc' "
"type='OptionsLabel' "
"/>"
@@ -2901,7 +2901,7 @@ const char *defaultXML1 = "<?xml version = '1.0'?>"
"type='PopUp' "
"/>"
"</layout>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='6' center='true'>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='6' align='center'>"
"<widget name='grRenderPopupDesc' "
"type='OptionsLabel' "
"/>"
@@ -2909,7 +2909,7 @@ const char *defaultXML1 = "<?xml version = '1.0'?>"
"type='PopUp' "
"/>"
"</layout>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='6' center='true'>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='6' align='center'>"
"<widget name='grStretchModePopupDesc' "
"type='OptionsLabel' "
"/>"
@@ -2930,7 +2930,7 @@ const char *defaultXML1 = "<?xml version = '1.0'?>"
"</dialog>"
"<dialog name='GlobalOptions_Shader' overlays='Dialog.GlobalOptions.TabWidget'>"
"<layout type='vertical' padding='16,16,16,16' spacing='8'>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='10' center='true'>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
"<widget name='grShaderPopUpDesc' "
"type='OptionsLabel' "
"/>"
@@ -2942,7 +2942,7 @@ const char *defaultXML1 = "<?xml version = '1.0'?>"
"</dialog>"
"<dialog name='GlobalOptions_Audio' overlays='Dialog.GlobalOptions.TabWidget'>"
"<layout type='vertical' padding='16,16,16,16' spacing='8'>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='6' center='true'>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='6' align='center'>"
"<widget name='auMidiPopupDesc' "
"type='OptionsLabel' "
"/>"
@@ -2950,7 +2950,7 @@ const char *defaultXML1 = "<?xml version = '1.0'?>"
"type='PopUp' "
"/>"
"</layout>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='6' center='true'>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='6' align='center'>"
"<widget name='auOPLPopupDesc' "
"type='OptionsLabel' "
"/>"
@@ -2958,7 +2958,7 @@ const char *defaultXML1 = "<?xml version = '1.0'?>"
"type='PopUp' "
"/>"
"</layout>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='3' center='true'>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='3' align='center'>"
"<widget name='subToggleDesc' "
"type='OptionsLabel' "
"/>"
@@ -2972,7 +2972,7 @@ const char *defaultXML1 = "<?xml version = '1.0'?>"
"type='Radiobutton' "
"/>"
"</layout>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='6' center='true'>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='6' align='center'>"
"<widget name='subSubtitleSpeedDesc' "
"type='OptionsLabel' "
"/>"
@@ -2987,7 +2987,7 @@ const char *defaultXML1 = "<?xml version = '1.0'?>"
"</dialog>"
"<dialog name='GlobalOptions_Volume' overlays='Dialog.GlobalOptions.TabWidget'>"
"<layout type='vertical' padding='16,16,16,16' spacing='8'>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='6' center='true'>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='6' align='center'>"
"<widget name='vcMusicText' "
"type='OptionsLabel' "
"/>"
@@ -2998,7 +2998,7 @@ const char *defaultXML1 = "<?xml version = '1.0'?>"
"type='SmallLabel' "
"/>"
"</layout>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='6' center='true'>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='6' align='center'>"
"<widget name='vcSfxText' "
"type='OptionsLabel' "
"/>"
@@ -3009,7 +3009,7 @@ const char *defaultXML1 = "<?xml version = '1.0'?>"
"type='SmallLabel' "
"/>"
"</layout>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='6' center='true'>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='6' align='center'>"
"<widget name='vcSpeechText' "
"type='OptionsLabel' "
"/>"
@@ -3020,7 +3020,7 @@ const char *defaultXML1 = "<?xml version = '1.0'?>"
"type='SmallLabel' "
"/>"
"</layout>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='6' center='true'>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='6' align='center'>"
"<space size='110' />"
"<widget name='vcMuteCheckbox' "
"type='Checkbox' "
@@ -3030,7 +3030,7 @@ const char *defaultXML1 = "<?xml version = '1.0'?>"
"</dialog>"
"<dialog name='GlobalOptions_MIDI' overlays='Dialog.GlobalOptions.TabWidget'>"
"<layout type='vertical' padding='16,16,16,16' spacing='6'>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='6' center='true'>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='6' align='center'>"
"<widget name='auPrefGmPopupDesc' "
"type='OptionsLabel' "
"/>"
@@ -3038,7 +3038,7 @@ const char *defaultXML1 = "<?xml version = '1.0'?>"
"type='PopUp' "
"/>"
"</layout>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='16' center='true'>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='16' align='center'>"
"<widget name='mcFontButton' "
"type='Button' "
"/>"
@@ -3053,7 +3053,7 @@ const char *defaultXML1 = "<?xml version = '1.0'?>"
"<widget name='mcMixedCheckbox' "
"type='Checkbox' "
"/>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='6' center='true'>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='6' align='center'>"
"<widget name='mcMidiGainText' "
"type='OptionsLabel' "
"/>"
@@ -3073,7 +3073,7 @@ const char *defaultXML1 = "<?xml version = '1.0'?>"
"</dialog>"
"<dialog name='GlobalOptions_MT32' overlays='Dialog.GlobalOptions.TabWidget'>"
"<layout type='vertical' padding='16,16,16,16' spacing='8'>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='6' center='true'>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='6' align='center'>"
"<widget name='auPrefMt32PopupDesc' "
"type='OptionsLabel' "
"/>"
@@ -3147,7 +3147,7 @@ const char *defaultXML1 = "<?xml version = '1.0'?>"
"height='Globals.Line.Height' "
"/>"
"</layout>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='6' center='true'>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='6' align='center'>"
"<widget name='RendererPopupDesc' "
"width='80' "
"height='Globals.Line.Height' "
@@ -3157,7 +3157,7 @@ const char *defaultXML1 = "<?xml version = '1.0'?>"
"type='PopUp' "
"/>"
"</layout>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='6' center='true'>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='6' align='center'>"
"<widget name='AutosavePeriodPopupDesc' "
"width='80' "
"height='Globals.Line.Height' "
@@ -3167,7 +3167,7 @@ const char *defaultXML1 = "<?xml version = '1.0'?>"
"type='PopUp' "
"/>"
"</layout>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='6' center='true'>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='6' align='center'>"
"<widget name='GuiLanguagePopupDesc' "
"width='80' "
"height='Globals.Line.Height' "
@@ -3177,17 +3177,17 @@ const char *defaultXML1 = "<?xml version = '1.0'?>"
"type='PopUp' "
"/>"
"</layout>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='6' center='true'>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='6' align='center'>"
"<widget name='GuiLanguageUseGameLanguage' "
"type='Checkbox' "
"/>"
"</layout>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='6' center='true'>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='6' align='center'>"
"<widget name='UseSystemDialogs' "
"type='Checkbox' "
"/>"
"</layout>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='6' center='true'>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='6' align='center'>"
"<widget name='UpdatesPopupDesc' "
"width='80' "
"height='Globals.Line.Height' "
@@ -3226,7 +3226,7 @@ const char *defaultXML1 = "<?xml version = '1.0'?>"
"/>"
"</layout>"
"</layout>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='6' center='true'>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='6' align='center'>"
"<layout type='vertical' padding='0,0,3,0' spacing='4'>"
"<widget name='StorageDisabledHint' "
"height='Globals.Line.Height' "
@@ -3236,7 +3236,7 @@ const char *defaultXML1 = "<?xml version = '1.0'?>"
"/>"
"</layout>"
"</layout>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='6' center='true'>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='6' align='center'>"
"<layout type='vertical' padding='0,0,3,0' spacing='1'>"
"<widget name='StorageUsernameDesc' "
"type='CloudTabLabel' "
@@ -3254,7 +3254,7 @@ const char *defaultXML1 = "<?xml version = '1.0'?>"
"/>"
"</layout>"
"</layout>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='6' center='true'>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='6' align='center'>"
"<layout type='vertical' padding='0,0,3,0' spacing='1'>"
"<widget name='StorageLastSyncDesc' "
"type='CloudTabLabel' "
@@ -3269,12 +3269,12 @@ const char *defaultXML1 = "<?xml version = '1.0'?>"
"/>"
"</layout>"
"</layout>"
-"<layout type='horizontal' padding='0,0,-3,0' spacing='6' center='true'>"
+"<layout type='horizontal' padding='0,0,-3,0' spacing='6' align='center'>"
"<widget name='StorageSyncHint' "
"height='Globals.Line.Height' "
"/>"
"</layout>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='6' center='true'>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='6' align='center'>"
"<layout type='vertical' padding='0,0,3,0' spacing='4'>"
"<widget name='StorageDownloadHint' "
"height='Globals.Line.Height' "
@@ -3284,7 +3284,7 @@ const char *defaultXML1 = "<?xml version = '1.0'?>"
"/>"
"</layout>"
"</layout>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='6' center='true'>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='6' align='center'>"
"<layout type='vertical' padding='0,0,3,0' spacing='4'>"
"<widget name='StorageDisconnectHint' "
"height='Globals.Line.Height' "
@@ -3299,7 +3299,7 @@ const char *defaultXML1 = "<?xml version = '1.0'?>"
"height='Globals.Line.Height' "
"/>"
"</layout>"
-"<layout type='horizontal' padding='0,0,-3,0' spacing='6' center='true'>"
+"<layout type='horizontal' padding='0,0,-3,0' spacing='6' align='center'>"
"<layout type='vertical' padding='0,0,1,0' spacing='2'>"
"<widget name='StorageWizardOpenLinkHint' "
"width='90' "
@@ -3313,12 +3313,12 @@ const char *defaultXML1 = "<?xml version = '1.0'?>"
"/>"
"</layout>"
"</layout>"
-"<layout type='horizontal' padding='0,0,-2,0' spacing='6' center='true'>"
+"<layout type='horizontal' padding='0,0,-2,0' spacing='6' align='center'>"
"<widget name='StorageWizardCodeHint' "
"height='Globals.Line.Height' "
"/>"
"</layout>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='6' center='true'>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='6' align='center'>"
"<layout type='vertical' padding='0,0,-2,0' spacing='2'>"
"<widget name='StorageWizardCodeBox' "
"width='72' "
@@ -3331,7 +3331,7 @@ const char *defaultXML1 = "<?xml version = '1.0'?>"
"/>"
"</layout>"
"</layout>"
-"<layout type='horizontal' padding='0,0,-2,0' spacing='6' center='true'>"
+"<layout type='horizontal' padding='0,0,-2,0' spacing='6' align='center'>"
"<widget name='StorageWizardConnectButton' "
"type='Button' "
"/>"
@@ -3343,7 +3343,7 @@ const char *defaultXML1 = "<?xml version = '1.0'?>"
"</dialog>"
"<dialog name='GlobalOptions_Network' overlays='Dialog.GlobalOptions.TabWidget'>"
"<layout type='vertical' padding='16,16,16,16' spacing='8'>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='6' center='true'>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='6' align='center'>"
"<widget name='RunServerButton' "
"type='Button' "
"/>"
@@ -3351,7 +3351,7 @@ const char *defaultXML1 = "<?xml version = '1.0'?>"
"height='Globals.Line.Height' "
"/>"
"</layout>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='16' center='true'>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='16' align='center'>"
"<widget name='RootPathButton' "
"type='Button' "
"/>"
@@ -3363,7 +3363,7 @@ const char *defaultXML1 = "<?xml version = '1.0'?>"
"width='Globals.Line.Height' "
"/>"
"</layout>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='6' center='true'>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='6' align='center'>"
"<widget name='ServerPortDesc' "
"width='80' "
"height='Globals.Line.Height' "
@@ -3378,7 +3378,7 @@ const char *defaultXML1 = "<?xml version = '1.0'?>"
"width='Globals.Line.Height' "
"/>"
"</layout>"
-"<layout type='vertical' padding='0,0,0,0' spacing='2' center='true'>"
+"<layout type='vertical' padding='0,0,0,0' spacing='2' align='center'>"
"<widget name='FeatureDescriptionLine1' "
"height='Globals.Line.Height' "
"/>"
@@ -3447,7 +3447,7 @@ const char *defaultXML1 = "<?xml version = '1.0'?>"
"<widget name='ReturnLine2' "
"height='Globals.Line.Height' "
"/>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='4' center='true'>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='4' align='center'>"
"<widget name='CodeBox1' "
"width='60' "
"height='16' "
@@ -3465,7 +3465,7 @@ const char *defaultXML1 = "<?xml version = '1.0'?>"
"height='16' "
"/>"
"</layout>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='4' center='true'>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='4' align='center'>"
"<widget name='CodeBox5' "
"width='60' "
"height='16' "
@@ -3486,7 +3486,7 @@ const char *defaultXML1 = "<?xml version = '1.0'?>"
"<widget name='MessageLine' "
"height='Globals.Line.Height' "
"/>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='4' center='true'>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='4' align='center'>"
"<widget name='OpenUrlButton' "
"type='Button' "
"/>"
@@ -3494,7 +3494,7 @@ const char *defaultXML1 = "<?xml version = '1.0'?>"
"type='Button' "
"/>"
"</layout>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='4' center='true'>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='4' align='center'>"
"<widget name='CancelButton' "
"type='Button' "
"/>"
@@ -3519,7 +3519,7 @@ const char *defaultXML1 = "<?xml version = '1.0'?>"
"</layout>"
"</dialog>"
"<dialog name='KeysDialog' overlays='Dialog.GlobalOptions' shading='dim'>"
-"<layout type='vertical' padding='8,8,8,8' center='true'>"
+"<layout type='vertical' padding='8,8,8,8' align='center'>"
"<widget name='Action' "
"height='Globals.Line.Height' "
"/>"
@@ -3603,7 +3603,7 @@ const char *defaultXML1 = "<?xml version = '1.0'?>"
"</dialog>"
"<dialog name='GameOptions_Game' overlays='Dialog.GameOptions.TabWidget' shading='dim'>"
"<layout type='vertical' padding='8,8,8,8'>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='6' center='true'>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='6' align='center'>"
"<widget name='Id' "
"width='35' "
"height='Globals.Line.Height' "
@@ -3613,7 +3613,7 @@ const char *defaultXML1 = "<?xml version = '1.0'?>"
"type='PopUp' "
"/>"
"</layout>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='6' center='true'>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='6' align='center'>"
"<widget name='Name' "
"width='35' "
"height='Globals.Line.Height' "
@@ -3624,7 +3624,7 @@ const char *defaultXML1 = "<?xml version = '1.0'?>"
"/>"
"</layout>"
"<space size='8'/>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='6' center='true'>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='6' align='center'>"
"<widget name='LangPopupDesc' "
"width='60' "
"height='Globals.Line.Height' "
@@ -3634,7 +3634,7 @@ const char *defaultXML1 = "<?xml version = '1.0'?>"
"type='PopUp' "
"/>"
"</layout>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='6' center='true'>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='6' align='center'>"
"<widget name='PlatformPopupDesc' "
"width='60' "
"height='Globals.Line.Height' "
@@ -3648,7 +3648,7 @@ const char *defaultXML1 = "<?xml version = '1.0'?>"
"</dialog>"
"<dialog name='GameOptions_Paths' overlays='Dialog.GameOptions.TabWidget' shading='dim'>"
"<layout type='vertical' padding='8,8,8,8'>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='16' center='true'>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='16' align='center'>"
"<widget name='Savepath' "
"type='Button' "
"/>"
@@ -3660,7 +3660,7 @@ const char *defaultXML1 = "<?xml version = '1.0'?>"
"width='Globals.Line.Height' "
"/>"
"</layout>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='16' center='true'>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='16' align='center'>"
"<widget name='Extrapath' "
"type='Button' "
"/>"
@@ -3672,7 +3672,7 @@ const char *defaultXML1 = "<?xml version = '1.0'?>"
"width='Globals.Line.Height' "
"/>"
"</layout>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='16' center='true'>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='16' align='center'>"
"<widget name='Gamepath' "
"type='Button' "
"/>"
@@ -3708,7 +3708,7 @@ const char *defaultXML1 = "<?xml version = '1.0'?>"
"</layout>"
"</dialog>"
"<dialog name='GlobalMenu' overlays='screen_center'>"
-"<layout type='vertical' padding='2,2,2,6' center='true' spacing='0'>"
+"<layout type='vertical' padding='2,2,2,6' align='center' spacing='0'>"
"<widget name='Title' "
"width='160' "
"height='12' "
@@ -3717,7 +3717,7 @@ const char *defaultXML1 = "<?xml version = '1.0'?>"
"width='160' "
"height='14' "
"/>"
-"<layout type='vertical' padding='0,0,3,0' center='true' spacing='6'>"
+"<layout type='vertical' padding='0,0,3,0' align='center' spacing='6'>"
"<widget name='Load' "
"width='120' "
"height='12' "
@@ -3757,7 +3757,7 @@ const char *defaultXML1 = "<?xml version = '1.0'?>"
"</dialog>"
"<dialog name='GlobalConfig' overlays='screen_center'>"
"<layout type='vertical' padding='8,8,8,8'>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='6' center='true'>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='6' align='center'>"
"<widget name='vcMusicText' "
"type='OptionsLabel' "
"/>"
@@ -3768,7 +3768,7 @@ const char *defaultXML1 = "<?xml version = '1.0'?>"
"type='SmallLabel' "
"/>"
"</layout>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='6' center='true'>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='6' align='center'>"
"<widget name='vcSfxText' "
"type='OptionsLabel' "
"/>"
@@ -3779,7 +3779,7 @@ const char *defaultXML1 = "<?xml version = '1.0'?>"
"type='SmallLabel' "
"/>"
"</layout>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='6' center='true'>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='6' align='center'>"
"<widget name='vcSpeechText' "
"type='OptionsLabel' "
"/>"
@@ -3790,18 +3790,18 @@ const char *defaultXML1 = "<?xml version = '1.0'?>"
"type='SmallLabel' "
"/>"
"</layout>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='6' center='true'>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='6' align='center'>"
"<space size='110' />"
"<widget name='vcMuteCheckbox' "
"type='Checkbox' "
"width='80' "
"/>"
"</layout>"
-"<layout type='vertical' padding='0,0,0,0' spacing='1' center='true'>"
+"<layout type='vertical' padding='0,0,0,0' spacing='1' align='center'>"
"<widget name='subToggleDesc' "
"type='OptionsLabel' "
"/>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='6' center='true'>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='6' align='center'>"
"<widget name='subToggleSpeechOnly' "
"type='Radiobutton' "
"width='90' "
@@ -3817,7 +3817,7 @@ const char *defaultXML1 = "<?xml version = '1.0'?>"
"</layout>"
"</layout>"
"<space size='2' />"
-"<layout type='horizontal' padding='0,0,0,0' spacing='6' center='true'>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='6' align='center'>"
"<widget name='subSubtitleSpeedDesc' "
"type='OptionsLabel' "
"/>"
@@ -3865,7 +3865,7 @@ const char *defaultXML1 = "<?xml version = '1.0'?>"
"<widget name='EnableTabCheckbox' "
"type='Checkbox' "
"/>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='10' center='true'>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
"<widget name='VoiceCountText' "
"type='OptionsLabel' "
"/>"
@@ -3877,7 +3877,7 @@ const char *defaultXML1 = "<?xml version = '1.0'?>"
"height='Globals.Line.Height' "
"/>"
"</layout>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='10' center='true'>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
"<widget name='LevelText' "
"type='OptionsLabel' "
"/>"
@@ -3889,7 +3889,7 @@ const char *defaultXML1 = "<?xml version = '1.0'?>"
"height='Globals.Line.Height' "
"/>"
"</layout>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='10' center='true'>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
"<widget name='SpeedText' "
"type='OptionsLabel' "
"/>"
@@ -3901,7 +3901,7 @@ const char *defaultXML1 = "<?xml version = '1.0'?>"
"height='Globals.Line.Height' "
"/>"
"</layout>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='10' center='true'>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
"<widget name='DepthText' "
"type='OptionsLabel' "
"/>"
@@ -3913,7 +3913,7 @@ const char *defaultXML1 = "<?xml version = '1.0'?>"
"height='Globals.Line.Height' "
"/>"
"</layout>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='10' center='true'>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
"<widget name='WaveFormTypeText' "
"type='OptionsLabel' "
"/>"
@@ -3928,7 +3928,7 @@ const char *defaultXML1 = "<?xml version = '1.0'?>"
"<widget name='EnableTabCheckbox' "
"type='Checkbox' "
"/>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='10' center='true'>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
"<widget name='RoomSizeText' "
"type='OptionsLabel' "
"/>"
@@ -3940,7 +3940,7 @@ const char *defaultXML1 = "<?xml version = '1.0'?>"
"height='Globals.Line.Height' "
"/>"
"</layout>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='10' center='true'>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
"<widget name='DampingText' "
"type='OptionsLabel' "
"/>"
@@ -3952,7 +3952,7 @@ const char *defaultXML1 = "<?xml version = '1.0'?>"
"height='Globals.Line.Height' "
"/>"
"</layout>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='10' center='true'>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
"<widget name='WidthText' "
"type='OptionsLabel' "
"/>"
@@ -3964,7 +3964,7 @@ const char *defaultXML1 = "<?xml version = '1.0'?>"
"height='Globals.Line.Height' "
"/>"
"</layout>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='10' center='true'>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
"<widget name='LevelText' "
"type='OptionsLabel' "
"/>"
@@ -3980,7 +3980,7 @@ const char *defaultXML1 = "<?xml version = '1.0'?>"
"</dialog>"
"<dialog name='FluidSynthSettings_Misc' overlays='Dialog.FluidSynthSettings.TabWidget'>"
"<layout type='vertical' padding='8,8,8,8' spacing='6'>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='10' center='true'>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
"<widget name='InterpolationText' "
"type='OptionsLabel' "
"/>"
@@ -3991,7 +3991,7 @@ const char *defaultXML1 = "<?xml version = '1.0'?>"
"</layout>"
"</dialog>"
"<dialog name='SaveLoadChooser' overlays='screen' inset='8' shading='dim'>"
-"<layout type='vertical' padding='8,8,8,8' center='true'>"
+"<layout type='vertical' padding='8,8,8,8' align='center'>"
"<widget name='Title' height='Globals.Line.Height'/>"
"<widget name='List' />"
"<layout type='horizontal' padding='0,0,16,0'>"
@@ -4018,7 +4018,7 @@ const char *defaultXML1 = "<?xml version = '1.0'?>"
"</layout>"
"</dialog>"
"<dialog name='SaveLoadCloudSyncProgress' overlays='screen_center' inset='8' shading='dim'>"
-"<layout type='vertical' padding='8,8,8,8' center='true'>"
+"<layout type='vertical' padding='8,8,8,8' align='center'>"
"<widget name='TitleText' "
"width='240' "
"height='Globals.Line.Height' "
@@ -4036,7 +4036,7 @@ const char *defaultXML1 = "<?xml version = '1.0'?>"
"textalign='center' "
"/>"
"<space size='1'/>"
-"<layout type='horizontal' padding='0,0,0,0' center='true' spacing='10'>"
+"<layout type='horizontal' padding='0,0,0,0' align='center' spacing='10'>"
"<widget name='Cancel' "
"width='100' "
"height='Globals.Button.Height' "
@@ -4068,7 +4068,7 @@ const char *defaultXML1 = "<?xml version = '1.0'?>"
"</layout>"
"</dialog>"
"<dialog name='RecorderDialog' overlays='screen' inset='8' shading='dim'>"
-"<layout type='vertical' padding='8,8,8,4' center='true'>"
+"<layout type='vertical' padding='8,8,8,4' align='center'>"
"<widget name='Title' "
"height='Globals.Line.Height' "
"/>"
@@ -4097,7 +4097,7 @@ const char *defaultXML1 = "<?xml version = '1.0'?>"
"</layout>"
"</dialog>"
"<dialog name='OnScreenDialog' overlays='screen_center'>"
-"<layout type='horizontal' spacing='5' padding='3,2,3,2' center='true'>"
+"<layout type='horizontal' spacing='5' padding='3,2,3,2' align='center'>"
"<widget name='StopButton' "
"width='16' "
"height='16' "
@@ -4121,7 +4121,7 @@ const char *defaultXML1 = "<?xml version = '1.0'?>"
"</layout>"
"</dialog>"
"<dialog name='EditRecordDialog' overlays='screen_center'>"
-"<layout type='vertical' padding='8,8,8,8' center='true'>"
+"<layout type='vertical' padding='8,8,8,8' align='center'>"
"<widget name='Title' "
"height='Globals.Line.Height' "
"/>"
@@ -4183,7 +4183,7 @@ const char *defaultXML1 = "<?xml version = '1.0'?>"
"</layout>"
"</dialog>"
"<dialog name='LoomTownsDifficultyDialog' overlays='screen_center'>"
-"<layout type='vertical' padding='8,8,8,8' center='true'>"
+"<layout type='vertical' padding='8,8,8,8' align='center'>"
"<widget name='Description1' "
"width='280' "
"height='Globals.Line.Height' "
@@ -4203,7 +4203,7 @@ const char *defaultXML1 = "<?xml version = '1.0'?>"
"</layout>"
"</dialog>"
"<dialog name='MassAdd' overlays='screen_center' shading='dim'>"
-"<layout type='vertical' padding='4,4,16,4' center='true'>"
+"<layout type='vertical' padding='4,4,16,4' align='center'>"
"<widget name='DirProgressText' "
"width='280' "
"height='Globals.Line.Height' "
@@ -4227,8 +4227,8 @@ const char *defaultXML1 = "<?xml version = '1.0'?>"
"</layout>"
"</dialog>"
"<dialog name='KeyMapper' overlays='screen_center' shading='dim'>"
-"<layout type='vertical' padding='8,8,8,8' spacing='10' center='true'>"
-"<layout type='horizontal' padding='0,0,0,0' spacing='10' center='true'>"
+"<layout type='vertical' padding='8,8,8,8' spacing='10' align='center'>"
+"<layout type='horizontal' padding='0,0,0,0' spacing='10' align='center'>"
"<widget name='PopupDesc' "
"type='OptionsLabel' "
"/>"
@@ -4248,7 +4248,7 @@ const char *defaultXML1 = "<?xml version = '1.0'?>"
"</layout>"
"</dialog>"
"<dialog name='Predictive' overlays='screen_center'>"
-"<layout type='vertical' padding='1,1,1,1' center='true'>"
+"<layout type='vertical' padding='1,1,1,1' align='center'>"
"<widget name='Headline' "
"height='Globals.Line.Height' "
"width='150' "
diff --git a/gui/themes/scummclassic.zip b/gui/themes/scummclassic.zip
index 3b86d007cb..0414fd0b39 100644
--- a/gui/themes/scummclassic.zip
+++ b/gui/themes/scummclassic.zip
Binary files differ
diff --git a/gui/themes/scummclassic/classic_layout.stx b/gui/themes/scummclassic/classic_layout.stx
index eb316cae5c..9ec0350f47 100644
--- a/gui/themes/scummclassic/classic_layout.stx
+++ b/gui/themes/scummclassic/classic_layout.stx
@@ -125,7 +125,7 @@
</globals>
<dialog name = 'Launcher' overlays = 'screen'>
- <layout type = 'vertical' center = 'true' padding = '16, 16, 8, 8'>
+ <layout type = 'vertical' align = 'center' padding = '16, 16, 8, 8'>
<widget name = 'Version'
height = 'Globals.Line.Height'
textalign = 'center'
@@ -271,7 +271,7 @@
type = 'SmallLabel'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'grJoystickDeadzoneDesc'
type = 'OptionsLabel'
/>
@@ -292,7 +292,7 @@
</dialog>
<dialog name = 'GlobalOptions_Graphics_Container' overlays = 'GlobalOptions_Graphics.Container'>
<layout type = 'vertical' padding = '16, 16, 16, 16' spacing = '8'>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'grModePopupDesc'
type = 'OptionsLabel'
/>
@@ -300,7 +300,7 @@
type = 'PopUp'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'grRenderPopupDesc'
type = 'OptionsLabel'
/>
@@ -308,7 +308,7 @@
type = 'PopUp'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'grStretchModePopupDesc'
type = 'OptionsLabel'
/>
@@ -330,7 +330,7 @@
<dialog name = 'GlobalOptions_Shader' overlays = 'Dialog.GlobalOptions.TabWidget'>
<layout type = 'vertical' padding = '16, 16, 16, 16' spacing = '8'>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'grShaderPopUpDesc'
type = 'OptionsLabel'
/>
@@ -343,7 +343,7 @@
<dialog name = 'GlobalOptions_Audio' overlays = 'Dialog.GlobalOptions.TabWidget'>
<layout type = 'vertical' padding = '16, 16, 16, 16' spacing = '8'>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'auMidiPopupDesc'
type = 'OptionsLabel'
/>
@@ -351,7 +351,7 @@
type = 'PopUp'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'auOPLPopupDesc'
type = 'OptionsLabel'
/>
@@ -424,7 +424,7 @@
/>
</layout>
</layout>
- <layout type = 'vertical' padding = '24, 0, 24, 0' center = 'true'>
+ <layout type = 'vertical' padding = '24, 0, 24, 0' align = 'center'>
<widget name = 'vcMuteCheckbox'
type = 'Checkbox'
/>
@@ -434,7 +434,7 @@
<dialog name = 'GlobalOptions_MIDI' overlays = 'Dialog.GlobalOptions.TabWidget'>
<layout type = 'vertical' padding = '16, 16, 16, 16' spacing = '8'>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'auPrefGmPopupDesc'
type = 'OptionsLabel'
/>
@@ -442,7 +442,7 @@
type = 'PopUp'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'mcFontButton'
type = 'Button'
/>
@@ -478,7 +478,7 @@
<dialog name = 'GlobalOptions_MT32' overlays = 'Dialog.GlobalOptions.TabWidget'>
<layout type = 'vertical' padding = '16, 16, 16, 16' spacing = '8'>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'auPrefMt32PopupDesc'
type = 'OptionsLabel'
/>
@@ -497,7 +497,7 @@
<dialog name = 'GlobalOptions_Paths' overlays = 'Dialog.GlobalOptions.TabWidget'>
<layout type = 'vertical' padding = '16, 16, 16, 16' spacing = '8'>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'SaveButton'
type = 'Button'
/>
@@ -509,7 +509,7 @@
width = 'Globals.Line.Height'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'ThemeButton'
type = 'Button'
/>
@@ -521,7 +521,7 @@
width = 'Globals.Line.Height'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'ExtraButton'
type = 'Button'
/>
@@ -546,7 +546,7 @@
<dialog name = 'GlobalOptions_Misc' overlays = 'Dialog.GlobalOptions.TabWidget'>
<layout type = 'vertical' padding = '16, 16, 16, 16' spacing = '8'>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'ThemeButton'
type = 'Button'
/>
@@ -554,7 +554,7 @@
height = 'Globals.Line.Height'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'RendererPopupDesc'
type = 'OptionsLabel'
/>
@@ -562,7 +562,7 @@
type = 'PopUp'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'AutosavePeriodPopupDesc'
type = 'OptionsLabel'
/>
@@ -570,7 +570,7 @@
type = 'PopUp'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'GuiLanguagePopupDesc'
type = 'OptionsLabel'
/>
@@ -578,17 +578,17 @@
type = 'PopUp'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'GuiLanguageUseGameLanguage'
type = 'Checkbox'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'UseSystemDialogs'
type = 'Checkbox'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'UpdatesPopupDesc'
type = 'OptionsLabel'
/>
@@ -626,7 +626,7 @@
/>
</layout>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<layout type = 'vertical' padding = '0, 0, 8, 0' spacing = '4'>
<widget name = 'StorageDisabledHint'
height = 'Globals.Line.Height'
@@ -636,7 +636,7 @@
/>
</layout>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<layout type = 'vertical' padding = '0, 0, 6, 0' spacing = '2'>
<widget name = 'StorageUsernameDesc'
type = 'CloudTabLabel'
@@ -654,7 +654,7 @@
/>
</layout>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<layout type = 'vertical' padding = '0, 0, 6, 0' spacing = '2'>
<widget name = 'StorageLastSyncDesc'
type = 'CloudTabLabel'
@@ -669,12 +669,12 @@
/>
</layout>
</layout>
- <layout type = 'horizontal' padding = '0, 0, -4, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, -4, 0' spacing = '10' align = 'center'>
<widget name = 'StorageSyncHint'
height = 'Globals.Line.Height'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<layout type = 'vertical' padding = '0, 0, 6, 0' spacing = '4'>
<widget name = 'StorageDownloadHint'
height = 'Globals.Line.Height'
@@ -684,7 +684,7 @@
/>
</layout>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<layout type = 'vertical' padding = '0, 0, 8, 0' spacing = '4'>
<widget name = 'StorageDisconnectHint'
height = 'Globals.Line.Height'
@@ -701,7 +701,7 @@
height = 'Globals.Line.Height'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, -2, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, -2, 0' spacing = '10' align = 'center'>
<layout type = 'vertical' padding = '0, 0, 2, 0' spacing = '4'>
<widget name = 'StorageWizardOpenLinkHint'
width = '106'
@@ -715,12 +715,12 @@
/>
</layout>
</layout>
- <layout type = 'horizontal' padding = '0, 0, -2, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, -2, 0' spacing = '10' align = 'center'>
<widget name = 'StorageWizardCodeHint'
height = 'Globals.Line.Height'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<layout type = 'vertical' padding = '0, 0, -2, 0' spacing = '2'>
<widget name = 'StorageWizardCodeBox'
width = '108'
@@ -733,7 +733,7 @@
/>
</layout>
</layout>
- <layout type = 'horizontal' padding = '0, 0, -2, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, -2, 0' spacing = '10' align = 'center'>
<widget name = 'StorageWizardConnectButton'
type = 'Button'
/>
@@ -746,7 +746,7 @@
<dialog name = 'GlobalOptions_Network' overlays = 'Dialog.GlobalOptions.TabWidget'>
<layout type = 'vertical' padding = '16, 16, 16, 16' spacing = '8'>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'RunServerButton'
type = 'Button'
/>
@@ -754,7 +754,7 @@
height = 'Globals.Line.Height'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'RootPathButton'
type = 'Button'
/>
@@ -766,7 +766,7 @@
width = 'Globals.Line.Height'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'ServerPortDesc'
type = 'OptionsLabel'
/>
@@ -779,7 +779,7 @@
width = 'Globals.Line.Height'
/>
</layout>
- <layout type = 'vertical' padding = '0, 0, 0, 0' spacing = '4' center = 'true'>
+ <layout type = 'vertical' padding = '0, 0, 0, 0' spacing = '4' align = 'center'>
<widget name = 'FeatureDescriptionLine1'
height = 'Globals.Line.Height'
/>
@@ -833,7 +833,7 @@
<dialog name = 'GlobalOptions_Cloud_ConnectionWizard_Container' overlays = 'GlobalOptions_Cloud_ConnectionWizard.Container'>
<layout type = 'vertical' padding = '16, 16, 16, 16' spacing = '0'>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<layout type = 'vertical' padding = '0, 0, 0, 0' spacing = '6'>
<widget name = 'Picture'
width = '109'
@@ -864,7 +864,7 @@
<widget name = 'ReturnLine2'
height = 'Globals.Line.Height'
/>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '4' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '4' align = 'center'>
<widget name = 'CodeBox1'
width = '70'
height = 'Globals.Line.Height'
@@ -882,7 +882,7 @@
height = 'Globals.Line.Height'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '4' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '4' align = 'center'>
<widget name = 'CodeBox5'
width = '70'
height = 'Globals.Line.Height'
@@ -906,7 +906,7 @@
<space size = '6' />
</layout>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'CancelButton'
type = 'Button'
/>
@@ -930,7 +930,7 @@
</dialog>
<dialog name='KeysDialog' overlays='Dialog.GlobalOptions' shading='dim'>
- <layout type='vertical' padding='8,8,8,8' center='true'>
+ <layout type='vertical' padding='8,8,8,8' align = 'center'>
<widget name='Action'
height='Globals.Line.Height'
/>
@@ -1021,7 +1021,7 @@
<dialog name = 'GameOptions_Game' overlays = 'Dialog.GameOptions.TabWidget' shading = 'dim'>
<layout type = 'vertical' padding = '16, 16, 16, 16'>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'Id'
type = 'OptionsLabel'
/>
@@ -1029,7 +1029,7 @@
type = 'PopUp'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'Name'
type = 'OptionsLabel'
/>
@@ -1037,7 +1037,7 @@
type = 'PopUp'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'LangPopupDesc'
type = 'OptionsLabel'
/>
@@ -1045,7 +1045,7 @@
type = 'PopUp'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'PlatformPopupDesc'
type = 'OptionsLabel'
/>
@@ -1058,7 +1058,7 @@
<dialog name = 'GameOptions_Paths' overlays = 'Dialog.GameOptions.TabWidget' shading = 'dim'>
<layout type = 'vertical' padding = '16, 16, 16, 16'>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'Savepath'
type = 'Button'
/>
@@ -1070,7 +1070,7 @@
width = 'Globals.Line.Height'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'Extrapath'
type = 'Button'
/>
@@ -1082,7 +1082,7 @@
width = 'Globals.Line.Height'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'Gamepath'
type = 'Button'
/>
@@ -1120,7 +1120,7 @@
</dialog>
<dialog name = 'GlobalMenu' overlays = 'screen_center'>
- <layout type = 'vertical' padding = '16, 16, 16, 16' center = 'true'>
+ <layout type = 'vertical' padding = '16, 16, 16, 16' align = 'center'>
<widget name = 'Title'
width = '210'
height = 'Globals.Line.Height'
@@ -1170,7 +1170,7 @@
<dialog name = 'GlobalConfig' overlays = 'screen_center'>
<layout type = 'vertical' padding = '8, 8, 8, 8'>
<layout type = 'horizontal' padding = '0, 0, 0, 0'>
- <layout type = 'vertical' padding = '0, 0, 0, 0' center = 'true'>
+ <layout type = 'vertical' padding = '0, 0, 0, 0' align = 'center'>
<layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '8'>
<widget name = 'vcMusicText'
type = 'OptionsLabel'
@@ -1206,7 +1206,7 @@
</layout>
</layout>
- <layout type = 'vertical' padding = '24, 24, 24, 24' center = 'true'>
+ <layout type = 'vertical' padding = '24, 24, 24, 24' align = 'center'>
<widget name = 'vcMuteCheckbox'
type = 'Checkbox'
width = '80' <!-- FIXME: Why this is needed? -->
@@ -1281,7 +1281,7 @@
<widget name = 'EnableTabCheckbox'
type = 'Checkbox'
/>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'VoiceCountText'
type = 'OptionsLabel'
/>
@@ -1293,7 +1293,7 @@
height = 'Globals.Line.Height'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'LevelText'
type = 'OptionsLabel'
/>
@@ -1305,7 +1305,7 @@
height = 'Globals.Line.Height'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'SpeedText'
type = 'OptionsLabel'
/>
@@ -1317,7 +1317,7 @@
height = 'Globals.Line.Height'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'DepthText'
type = 'OptionsLabel'
/>
@@ -1329,7 +1329,7 @@
height = 'Globals.Line.Height'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'WaveFormTypeText'
type = 'OptionsLabel'
/>
@@ -1345,7 +1345,7 @@
<widget name = 'EnableTabCheckbox'
type = 'Checkbox'
/>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'RoomSizeText'
type = 'OptionsLabel'
/>
@@ -1357,7 +1357,7 @@
height = 'Globals.Line.Height'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'DampingText'
type = 'OptionsLabel'
/>
@@ -1369,7 +1369,7 @@
height = 'Globals.Line.Height'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'WidthText'
type = 'OptionsLabel'
/>
@@ -1381,7 +1381,7 @@
height = 'Globals.Line.Height'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'LevelText'
type = 'OptionsLabel'
/>
@@ -1398,7 +1398,7 @@
<dialog name = 'FluidSynthSettings_Misc' overlays = 'Dialog.FluidSynthSettings.TabWidget'>
<layout type = 'vertical' padding = '16, 16, 16, 16' spacing = '8'>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'InterpolationText'
type = 'OptionsLabel'
/>
@@ -1410,7 +1410,7 @@
</dialog>
<dialog name = 'SaveLoadChooser' overlays = 'screen' inset = '8' shading = 'dim'>
- <layout type = 'vertical' padding = '8, 8, 8, 32' center = 'true'>
+ <layout type = 'vertical' padding = '8, 8, 8, 32' align = 'center'>
<layout type = 'horizontal' padding = '0, 0, 0, 0'>
<widget name = 'Title'
height = 'Globals.Line.Height'
@@ -1453,7 +1453,7 @@
</dialog>
<dialog name = 'SaveLoadCloudSyncProgress' overlays = 'screen_center' inset = '8' shading = 'dim'>
- <layout type = 'vertical' padding = '8, 8, 8, 8' center = 'true'>
+ <layout type = 'vertical' padding = '8, 8, 8, 8' align = 'center'>
<widget name = 'TitleText'
width = '496'
height = 'Globals.Line.Height'
@@ -1471,7 +1471,7 @@
textalign = 'center'
/>
<space size = '1'/>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' center = 'true' spacing = '10'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' align = 'center' spacing = '10'>
<widget name = 'Cancel'
width = '150'
height = 'Globals.Button.Height'
@@ -1506,7 +1506,7 @@
</dialog>
<dialog name = 'RecorderDialog' overlays = 'screen' inset = '8' shading = 'dim'>
- <layout type = 'vertical' padding = '8, 8, 8, 32' center = 'true'>
+ <layout type = 'vertical' padding = '8, 8, 8, 32' align = 'center'>
<widget name = 'Title'
height = 'Globals.Line.Height'
/>
@@ -1559,7 +1559,7 @@
</dialog>
<dialog name = 'OnScreenDialog' overlays = 'screen_center'>
- <layout type = 'horizontal' spacing = '5' padding = '5, 3, 5, 3' center = 'true'>
+ <layout type = 'horizontal' spacing = '5' padding = '5, 3, 5, 3' align = 'center'>
<widget name = 'StopButton'
width = '32'
height = '32'
@@ -1584,7 +1584,7 @@
</dialog>
<dialog name = 'EditRecordDialog' overlays = 'screen_center'>
- <layout type = 'vertical' padding = '8, 8, 8, 8' center = 'true'>
+ <layout type = 'vertical' padding = '8, 8, 8, 8' align = 'center'>
<widget name = 'Title'
width = '320'
height = 'Globals.Line.Height'
@@ -1625,7 +1625,7 @@
</dialog>
<dialog name = 'ScummHelp' overlays = 'screen_center'>
- <layout type = 'vertical' padding = '8, 8, 8, 8' center = 'true'>
+ <layout type = 'vertical' padding = '8, 8, 8, 8' align = 'center'>
<widget name = 'Title'
width = '320'
height = 'Globals.Line.Height'
@@ -1649,7 +1649,7 @@
</dialog>
<dialog name = 'LoomTownsDifficultyDialog' overlays = 'screen_center'>
- <layout type = 'vertical' padding = '8, 8, 8, 8' center = 'true'>
+ <layout type = 'vertical' padding = '8, 8, 8, 8' align = 'center'>
<widget name = 'Description1'
width = '320'
height = 'Globals.Line.Height'
@@ -1670,7 +1670,7 @@
</dialog>
<dialog name = 'MassAdd' overlays = 'screen_center' shading = 'dim'>
- <layout type = 'vertical' padding = '8, 8, 32, 8' center = 'true'>
+ <layout type = 'vertical' padding = '8, 8, 32, 8' align = 'center'>
<widget name = 'DirProgressText'
width = '480'
height = 'Globals.Line.Height'
@@ -1695,8 +1695,8 @@
</dialog>
<dialog name = 'KeyMapper' overlays = 'screen_center' shading = 'dim'>
- <layout type = 'vertical' padding = '8, 8, 32, 8' spacing = '10' center = 'true'>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'vertical' padding = '8, 8, 32, 8' spacing = '10' align = 'center'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'PopupDesc'
type = 'OptionsLabel'
/>
@@ -1717,7 +1717,7 @@
</dialog>
<dialog name = 'Predictive' overlays = 'screen_center'>
- <layout type = 'vertical' padding = '5, 5, 5, 5' center = 'true'>
+ <layout type = 'vertical' padding = '5, 5, 5, 5' align = 'center'>
<widget name = 'Headline'
height = 'Globals.Line.Height'
width = '210'
diff --git a/gui/themes/scummclassic/classic_layout_lowres.stx b/gui/themes/scummclassic/classic_layout_lowres.stx
index dfd786c81b..473c336a00 100644
--- a/gui/themes/scummclassic/classic_layout_lowres.stx
+++ b/gui/themes/scummclassic/classic_layout_lowres.stx
@@ -123,7 +123,7 @@
</globals>
<dialog name = 'Launcher' overlays = 'screen'>
- <layout type = 'vertical' center = 'true' padding = '6, 6, 2, 2'>
+ <layout type = 'vertical' align = 'center' padding = '6, 6, 2, 2'>
<widget name = 'Version'
height = 'Globals.Line.Height'
textalign = 'center'
@@ -268,7 +268,7 @@
type = 'SmallLabel'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'grJoystickDeadzoneDesc'
type = 'OptionsLabel'
/>
@@ -289,7 +289,7 @@
</dialog>
<dialog name = 'GlobalOptions_Graphics_Container' overlays = 'GlobalOptions_Graphics.Container'>
<layout type = 'vertical' padding = '16, 16, 16, 16' spacing = '8'>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' align = 'center'>
<widget name = 'grModePopupDesc'
type = 'OptionsLabel'
/>
@@ -297,7 +297,7 @@
type = 'PopUp'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' align = 'center'>
<widget name = 'grRenderPopupDesc'
type = 'OptionsLabel'
/>
@@ -305,7 +305,7 @@
type = 'PopUp'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' align = 'center'>
<widget name = 'grStretchModePopupDesc'
type = 'OptionsLabel'
/>
@@ -327,7 +327,7 @@
<dialog name = 'GlobalOptions_Shader' overlays = 'Dialog.GlobalOptions.TabWidget'>
<layout type = 'vertical' padding = '16, 16, 16, 16' spacing = '8'>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'grShaderPopUpDesc'
type = 'OptionsLabel'
/>
@@ -340,7 +340,7 @@
<dialog name = 'GlobalOptions_Audio' overlays = 'Dialog.GlobalOptions.TabWidget'>
<layout type = 'vertical' padding = '16, 16, 16, 16' spacing = '8'>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' align = 'center'>
<widget name = 'auMidiPopupDesc'
type = 'OptionsLabel'
/>
@@ -348,7 +348,7 @@
type = 'PopUp'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' align = 'center'>
<widget name = 'auOPLPopupDesc'
type = 'OptionsLabel'
/>
@@ -356,7 +356,7 @@
type = 'PopUp'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '3' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '3' align = 'center'>
<widget name = 'subToggleDesc'
type = 'OptionsLabel'
/>
@@ -370,7 +370,7 @@
type = 'Radiobutton'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' align = 'center'>
<widget name = 'subSubtitleSpeedDesc'
type = 'OptionsLabel'
/>
@@ -386,7 +386,7 @@
<dialog name = 'GlobalOptions_Volume' overlays = 'Dialog.GlobalOptions.TabWidget'>
<layout type = 'vertical' padding = '16, 16, 16, 16' spacing = '8'>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' align = 'center'>
<widget name = 'vcMusicText'
type = 'OptionsLabel'
/>
@@ -397,7 +397,7 @@
type = 'SmallLabel'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' align = 'center'>
<widget name = 'vcSfxText'
type = 'OptionsLabel'
/>
@@ -408,7 +408,7 @@
type = 'SmallLabel'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' align = 'center'>
<widget name = 'vcSpeechText'
type = 'OptionsLabel'
/>
@@ -419,7 +419,7 @@
type = 'SmallLabel'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' align = 'center'>
<space size = '110' />
<widget name = 'vcMuteCheckbox'
type = 'Checkbox'
@@ -430,7 +430,7 @@
<dialog name = 'GlobalOptions_MIDI' overlays = 'Dialog.GlobalOptions.TabWidget'>
<layout type = 'vertical' padding = '16, 16, 16, 16' spacing = '6'>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' align = 'center'>
<widget name = 'auPrefGmPopupDesc'
type = 'OptionsLabel'
/>
@@ -438,7 +438,7 @@
type = 'PopUp'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '16' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '16' align = 'center'>
<widget name = 'mcFontButton'
type = 'Button'
/>
@@ -453,7 +453,7 @@
<widget name = 'mcMixedCheckbox'
type = 'Checkbox'
/>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' align = 'center'>
<widget name = 'mcMidiGainText'
type = 'OptionsLabel'
/>
@@ -474,7 +474,7 @@
<dialog name = 'GlobalOptions_MT32' overlays = 'Dialog.GlobalOptions.TabWidget'>
<layout type = 'vertical' padding = '16, 16, 16, 16' spacing = '8'>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' align = 'center'>
<widget name = 'auPrefMt32PopupDesc'
type = 'OptionsLabel'
/>
@@ -550,7 +550,7 @@
height = 'Globals.Line.Height'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' align = 'center'>
<widget name = 'RendererPopupDesc'
width = '80'
height = 'Globals.Line.Height'
@@ -560,7 +560,7 @@
type = 'PopUp'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' align = 'center'>
<widget name = 'AutosavePeriodPopupDesc'
width = '80'
height = 'Globals.Line.Height'
@@ -570,7 +570,7 @@
type = 'PopUp'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' align = 'center'>
<widget name = 'GuiLanguagePopupDesc'
width = '80'
height = 'Globals.Line.Height'
@@ -580,17 +580,17 @@
type = 'PopUp'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' align = 'center'>
<widget name = 'GuiLanguageUseGameLanguage'
type = 'Checkbox'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' align = 'center'>
<widget name = 'UseSystemDialogs'
type = 'Checkbox'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' align = 'center'>
<widget name = 'UpdatesPopupDesc'
width = '80'
height = 'Globals.Line.Height'
@@ -631,7 +631,7 @@
/>
</layout>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' align = 'center'>
<layout type = 'vertical' padding = '0, 0, 3, 0' spacing = '4'>
<widget name = 'StorageDisabledHint'
height = 'Globals.Line.Height'
@@ -641,7 +641,7 @@
/>
</layout>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' align = 'center'>
<layout type = 'vertical' padding = '0, 0, 3, 0' spacing = '1'>
<widget name = 'StorageUsernameDesc'
type = 'CloudTabLabel'
@@ -659,7 +659,7 @@
/>
</layout>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' align = 'center'>
<layout type = 'vertical' padding = '0, 0, 3, 0' spacing = '1'>
<widget name = 'StorageLastSyncDesc'
type = 'CloudTabLabel'
@@ -674,12 +674,12 @@
/>
</layout>
</layout>
- <layout type = 'horizontal' padding = '0, 0, -3, 0' spacing = '6' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, -3, 0' spacing = '6' align = 'center'>
<widget name = 'StorageSyncHint'
height = 'Globals.Line.Height'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' align = 'center'>
<layout type = 'vertical' padding = '0, 0, 3, 0' spacing = '4'>
<widget name = 'StorageDownloadHint'
height = 'Globals.Line.Height'
@@ -689,7 +689,7 @@
/>
</layout>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' align = 'center'>
<layout type = 'vertical' padding = '0, 0, 3, 0' spacing = '4'>
<widget name = 'StorageDisconnectHint'
height = 'Globals.Line.Height'
@@ -706,7 +706,7 @@
height = 'Globals.Line.Height'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, -3, 0' spacing = '6' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, -3, 0' spacing = '6' align = 'center'>
<layout type = 'vertical' padding = '0, 0, 1, 0' spacing = '2'>
<widget name = 'StorageWizardOpenLinkHint'
width = '90'
@@ -720,12 +720,12 @@
/>
</layout>
</layout>
- <layout type = 'horizontal' padding = '0, 0, -2, 0' spacing = '6' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, -2, 0' spacing = '6' align = 'center'>
<widget name = 'StorageWizardCodeHint'
height = 'Globals.Line.Height'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' align = 'center'>
<layout type = 'vertical' padding = '0, 0, -2, 0' spacing = '2'>
<widget name = 'StorageWizardCodeBox'
width = '72'
@@ -738,7 +738,7 @@
/>
</layout>
</layout>
- <layout type = 'horizontal' padding = '0, 0, -2, 0' spacing = '6' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, -2, 0' spacing = '6' align = 'center'>
<widget name = 'StorageWizardConnectButton'
type = 'Button'
/>
@@ -751,7 +751,7 @@
<dialog name = 'GlobalOptions_Network' overlays = 'Dialog.GlobalOptions.TabWidget'>
<layout type = 'vertical' padding = '16, 16, 16, 16' spacing = '8'>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' align = 'center'>
<widget name = 'RunServerButton'
type = 'Button'
/>
@@ -759,7 +759,7 @@
height = 'Globals.Line.Height'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '16' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '16' align = 'center'>
<widget name = 'RootPathButton'
type = 'Button'
/>
@@ -771,7 +771,7 @@
width = 'Globals.Line.Height'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' align = 'center'>
<widget name = 'ServerPortDesc'
width = '80'
height = 'Globals.Line.Height'
@@ -786,7 +786,7 @@
width = 'Globals.Line.Height'
/>
</layout>
- <layout type = 'vertical' padding = '0, 0, 0, 0' spacing = '2' center = 'true'>
+ <layout type = 'vertical' padding = '0, 0, 0, 0' spacing = '2' align = 'center'>
<widget name = 'FeatureDescriptionLine1'
height = 'Globals.Line.Height'
/>
@@ -858,7 +858,7 @@
<widget name = 'ReturnLine2'
height = 'Globals.Line.Height'
/>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '4' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '4' align = 'center'>
<widget name = 'CodeBox1'
width = '60'
height = '16'
@@ -876,7 +876,7 @@
height = '16'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '4' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '4' align = 'center'>
<widget name = 'CodeBox5'
width = '60'
height = '16'
@@ -897,7 +897,7 @@
<widget name = 'MessageLine'
height = 'Globals.Line.Height'
/>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '4' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '4' align = 'center'>
<widget name = 'OpenUrlButton'
type = 'Button'
/>
@@ -905,7 +905,7 @@
type = 'Button'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '4' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '4' align = 'center'>
<widget name = 'CancelButton'
type = 'Button'
/>
@@ -931,7 +931,7 @@
</dialog>
<dialog name='KeysDialog' overlays='Dialog.GlobalOptions' shading='dim'>
- <layout type='vertical' padding='8,8,8,8' center='true'>
+ <layout type='vertical' padding='8,8,8,8' align = 'center'>
<widget name='Action'
height='Globals.Line.Height'
/>
@@ -1022,7 +1022,7 @@
<dialog name = 'GameOptions_Game' overlays = 'Dialog.GameOptions.TabWidget' shading = 'dim'>
<layout type = 'vertical' padding = '8, 8, 8, 8'>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' align = 'center'>
<widget name = 'Id'
width = '35'
height = 'Globals.Line.Height'
@@ -1032,7 +1032,7 @@
type = 'PopUp'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' align = 'center'>
<widget name = 'Name'
width = '35'
height = 'Globals.Line.Height'
@@ -1043,7 +1043,7 @@
/>
</layout>
<space size = '8'/>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' align = 'center'>
<widget name = 'LangPopupDesc'
width = '60'
height = 'Globals.Line.Height'
@@ -1053,7 +1053,7 @@
type = 'PopUp'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' align = 'center'>
<widget name = 'PlatformPopupDesc'
width = '60'
height = 'Globals.Line.Height'
@@ -1068,7 +1068,7 @@
<dialog name = 'GameOptions_Paths' overlays = 'Dialog.GameOptions.TabWidget' shading = 'dim'>
<layout type = 'vertical' padding = '8, 8, 8, 8'>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '16' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '16' align = 'center'>
<widget name = 'Savepath'
type = 'Button'
/>
@@ -1080,7 +1080,7 @@
width = 'Globals.Line.Height'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '16' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '16' align = 'center'>
<widget name = 'Extrapath'
type = 'Button'
/>
@@ -1092,7 +1092,7 @@
width = 'Globals.Line.Height'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '16' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '16' align = 'center'>
<widget name = 'Gamepath'
type = 'Button'
/>
@@ -1130,7 +1130,7 @@
</dialog>
<dialog name = 'GlobalMenu' overlays = 'screen_center'>
- <layout type = 'vertical' padding = '2, 2, 2, 6' center = 'true' spacing='0'>
+ <layout type = 'vertical' padding = '2, 2, 2, 6' align = 'center' spacing='0'>
<widget name = 'Title'
width = '160'
height = '12'
@@ -1139,7 +1139,7 @@
width = '160'
height = '14'
/>
- <layout type = 'vertical' padding = '0, 0, 3, 0' center = 'true' spacing='6'>
+ <layout type = 'vertical' padding = '0, 0, 3, 0' align = 'center' spacing='6'>
<widget name = 'Load'
width = '120'
height = '12'
@@ -1180,7 +1180,7 @@
<dialog name = 'GlobalConfig' overlays = 'screen_center'>
<layout type = 'vertical' padding = '8, 8, 8, 8'>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' align = 'center'>
<widget name = 'vcMusicText'
type = 'OptionsLabel'
/>
@@ -1191,7 +1191,7 @@
type = 'SmallLabel'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' align = 'center'>
<widget name = 'vcSfxText'
type = 'OptionsLabel'
/>
@@ -1202,7 +1202,7 @@
type = 'SmallLabel'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' align = 'center'>
<widget name = 'vcSpeechText'
type = 'OptionsLabel'
/>
@@ -1213,18 +1213,18 @@
type = 'SmallLabel'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' align = 'center'>
<space size = '110' />
<widget name = 'vcMuteCheckbox'
type = 'Checkbox'
width = '80'
/>
</layout>
- <layout type = 'vertical' padding = '0, 0, 0, 0' spacing = '1' center = 'true'>
+ <layout type = 'vertical' padding = '0, 0, 0, 0' spacing = '1' align = 'center'>
<widget name = 'subToggleDesc'
type = 'OptionsLabel'
/>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' align = 'center'>
<widget name = 'subToggleSpeechOnly'
type = 'Radiobutton'
width = '90'
@@ -1240,7 +1240,7 @@
</layout>
</layout>
<space size = '2' />
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' align = 'center'>
<widget name = 'subSubtitleSpeedDesc'
type = 'OptionsLabel'
/>
@@ -1290,7 +1290,7 @@
<widget name = 'EnableTabCheckbox'
type = 'Checkbox'
/>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'VoiceCountText'
type = 'OptionsLabel'
/>
@@ -1302,7 +1302,7 @@
height = 'Globals.Line.Height'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'LevelText'
type = 'OptionsLabel'
/>
@@ -1314,7 +1314,7 @@
height = 'Globals.Line.Height'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'SpeedText'
type = 'OptionsLabel'
/>
@@ -1326,7 +1326,7 @@
height = 'Globals.Line.Height'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'DepthText'
type = 'OptionsLabel'
/>
@@ -1338,7 +1338,7 @@
height = 'Globals.Line.Height'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'WaveFormTypeText'
type = 'OptionsLabel'
/>
@@ -1354,7 +1354,7 @@
<widget name = 'EnableTabCheckbox'
type = 'Checkbox'
/>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'RoomSizeText'
type = 'OptionsLabel'
/>
@@ -1366,7 +1366,7 @@
height = 'Globals.Line.Height'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'DampingText'
type = 'OptionsLabel'
/>
@@ -1378,7 +1378,7 @@
height = 'Globals.Line.Height'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'WidthText'
type = 'OptionsLabel'
/>
@@ -1390,7 +1390,7 @@
height = 'Globals.Line.Height'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'LevelText'
type = 'OptionsLabel'
/>
@@ -1407,7 +1407,7 @@
<dialog name = 'FluidSynthSettings_Misc' overlays = 'Dialog.FluidSynthSettings.TabWidget'>
<layout type = 'vertical' padding = '8, 8, 8, 8' spacing = '6'>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'InterpolationText'
type = 'OptionsLabel'
/>
@@ -1419,7 +1419,7 @@
</dialog>
<dialog name = 'SaveLoadChooser' overlays = 'screen' inset = '8' shading = 'dim'>
- <layout type = 'vertical' padding = '8, 8, 8, 8' center = 'true'>
+ <layout type = 'vertical' padding = '8, 8, 8, 8' align = 'center'>
<widget name = 'Title' height = 'Globals.Line.Height'/>
<widget name = 'List' />
<layout type = 'horizontal' padding = '0, 0, 16, 0'>
@@ -1447,7 +1447,7 @@
</dialog>
<dialog name = 'SaveLoadCloudSyncProgress' overlays = 'screen_center' inset = '8' shading = 'dim'>
- <layout type = 'vertical' padding = '8, 8, 8, 8' center = 'true'>
+ <layout type = 'vertical' padding = '8, 8, 8, 8' align = 'center'>
<widget name = 'TitleText'
width = '240'
height = 'Globals.Line.Height'
@@ -1465,7 +1465,7 @@
textalign = 'center'
/>
<space size = '1'/>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' center = 'true' spacing = '10'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' align = 'center' spacing = '10'>
<widget name = 'Cancel'
width = '100'
height = 'Globals.Button.Height'
@@ -1499,7 +1499,7 @@
</dialog>
<dialog name = 'RecorderDialog' overlays = 'screen' inset = '8' shading = 'dim'>
- <layout type = 'vertical' padding = '8, 8, 8, 4' center = 'true'>
+ <layout type = 'vertical' padding = '8, 8, 8, 4' align = 'center'>
<widget name = 'Title'
height = 'Globals.Line.Height'
/>
@@ -1529,7 +1529,7 @@
</dialog>
<dialog name = 'OnScreenDialog' overlays = 'screen_center'>
- <layout type = 'horizontal' spacing = '5' padding = '3, 2, 3, 2' center = 'true'>
+ <layout type = 'horizontal' spacing = '5' padding = '3, 2, 3, 2' align = 'center'>
<widget name = 'StopButton'
width = '16'
height = '16'
@@ -1554,7 +1554,7 @@
</dialog>
<dialog name = 'EditRecordDialog' overlays = 'screen_center'>
- <layout type = 'vertical' padding = '8, 8, 8, 8' center = 'true'>
+ <layout type = 'vertical' padding = '8, 8, 8, 8' align = 'center'>
<widget name = 'Title'
height = 'Globals.Line.Height'
/>
@@ -1618,7 +1618,7 @@
</dialog>
<dialog name = 'LoomTownsDifficultyDialog' overlays = 'screen_center'>
- <layout type = 'vertical' padding = '8, 8, 8, 8' center = 'true'>
+ <layout type = 'vertical' padding = '8, 8, 8, 8' align = 'center'>
<widget name = 'Description1'
width = '280'
height = 'Globals.Line.Height'
@@ -1639,7 +1639,7 @@
</dialog>
<dialog name = 'MassAdd' overlays = 'screen_center' shading = 'dim'>
- <layout type = 'vertical' padding = '4, 4, 16, 4' center = 'true'>
+ <layout type = 'vertical' padding = '4, 4, 16, 4' align = 'center'>
<widget name = 'DirProgressText'
width = '280'
height = 'Globals.Line.Height'
@@ -1664,8 +1664,8 @@
</dialog>
<dialog name = 'KeyMapper' overlays = 'screen_center' shading = 'dim'>
- <layout type = 'vertical' padding = '8, 8, 8, 8' spacing = '10' center = 'true'>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'vertical' padding = '8, 8, 8, 8' spacing = '10' align = 'center'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'PopupDesc'
type = 'OptionsLabel'
/>
@@ -1686,7 +1686,7 @@
</dialog>
<dialog name = 'Predictive' overlays = 'screen_center'>
- <layout type = 'vertical' padding = '1, 1, 1, 1' center = 'true'>
+ <layout type = 'vertical' padding = '1, 1, 1, 1' align = 'center'>
<widget name = 'Headline'
height = 'Globals.Line.Height'
width = '150'
diff --git a/gui/themes/scummmodern.zip b/gui/themes/scummmodern.zip
index 61de3daf3d..1c8f107df7 100644
--- a/gui/themes/scummmodern.zip
+++ b/gui/themes/scummmodern.zip
Binary files differ
diff --git a/gui/themes/scummmodern/scummmodern_layout.stx b/gui/themes/scummmodern/scummmodern_layout.stx
index b3a6ef205f..71f3d78ff6 100644
--- a/gui/themes/scummmodern/scummmodern_layout.stx
+++ b/gui/themes/scummmodern/scummmodern_layout.stx
@@ -77,9 +77,6 @@
<widget name = 'Button'
size = '108, 24'
/>
- <widget name = 'LauncherButton'
- size = '130, 24'
- />
<widget name = 'WideButton'
size = '216, 24'
/>
@@ -134,7 +131,7 @@
</globals>
<dialog name = 'Launcher' overlays = 'screen'>
- <layout type = 'vertical' center = 'true' padding = '23, 23, 8, 23'>
+ <layout type = 'vertical' align = 'center' padding = '23, 23, 8, 23'>
<widget name = 'Logo'
width = '287'
height = '80'
@@ -163,33 +160,33 @@
</layout>
<layout type = 'horizontal' padding = '0, 0, 0, 0'>
<widget name = 'GameList'/>
- <layout type = 'vertical' padding = '10, 0, 0, 0'>
+ <layout type = 'vertical' padding = '10, 0, 0, 0' align = 'stretch'>
<widget name = 'StartButton'
- type = 'LauncherButton'
+ type = 'Button'
/>
<widget name = 'LoadGameButton'
- type = 'LauncherButton'
+ type = 'Button'
/>
<space size = '10' />
<widget name = 'AddGameButton'
- type = 'LauncherButton'
+ type = 'Button'
/>
<widget name = 'EditGameButton'
- type = 'LauncherButton'
+ type = 'Button'
/>
<widget name = 'RemoveGameButton'
- type = 'LauncherButton'
+ type = 'Button'
/>
<space size = '10' />
<widget name = 'OptionsButton'
- type = 'LauncherButton'
+ type = 'Button'
/>
<widget name = 'AboutButton'
- type = 'LauncherButton'
+ type = 'Button'
/>
<space size = '10' />
<widget name = 'QuitButton'
- type = 'LauncherButton'
+ type = 'Button'
/>
</layout>
</layout>
@@ -288,7 +285,7 @@
type = 'SmallLabel'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'grJoystickDeadzoneDesc'
type = 'OptionsLabel'
/>
@@ -309,7 +306,7 @@
</dialog>
<dialog name = 'GlobalOptions_Graphics_Container' overlays = 'GlobalOptions_Graphics.Container'>
<layout type = 'vertical' padding = '16, 16, 16, 16' spacing = '8'>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'grModePopupDesc'
type = 'OptionsLabel'
/>
@@ -317,7 +314,7 @@
type = 'PopUp'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'grRenderPopupDesc'
type = 'OptionsLabel'
/>
@@ -325,7 +322,7 @@
type = 'PopUp'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'grStretchModePopupDesc'
type = 'OptionsLabel'
/>
@@ -347,7 +344,7 @@
<dialog name = 'GlobalOptions_Shader' overlays = 'Dialog.GlobalOptions.TabWidget'>
<layout type = 'vertical' padding = '16, 16, 16, 16' spacing = '8'>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'grShaderPopUpDesc'
type = 'OptionsLabel'
/>
@@ -360,7 +357,7 @@
<dialog name = 'GlobalOptions_Audio' overlays = 'Dialog.GlobalOptions.TabWidget'>
<layout type = 'vertical' padding = '16, 16, 16, 16' spacing = '8'>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'auMidiPopupDesc'
type = 'OptionsLabel'
/>
@@ -368,7 +365,7 @@
type = 'PopUp'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'auOPLPopupDesc'
type = 'OptionsLabel'
/>
@@ -407,7 +404,7 @@
<dialog name = 'GlobalOptions_Volume' overlays = 'Dialog.GlobalOptions.TabWidget'>
<layout type = 'horizontal' padding = '16, 16, 16, 16' spacing = '8'>
<layout type = 'vertical' padding = '0, 0, 0, 0' spacing = '8'>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'vcMusicText'
type = 'OptionsLabel'
/>
@@ -418,7 +415,7 @@
type = 'SmallLabel'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'vcSfxText'
type = 'OptionsLabel'
/>
@@ -429,7 +426,7 @@
type = 'SmallLabel'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'vcSpeechText'
type = 'OptionsLabel'
/>
@@ -441,7 +438,7 @@
/>
</layout>
</layout>
- <layout type = 'vertical' padding = '24, 0, 24, 0' center = 'true'>
+ <layout type = 'vertical' padding = '24, 0, 24, 0' align = 'center'>
<widget name = 'vcMuteCheckbox'
type = 'Checkbox'
/>
@@ -451,7 +448,7 @@
<dialog name = 'GlobalOptions_MIDI' overlays = 'Dialog.GlobalOptions.TabWidget'>
<layout type = 'vertical' padding = '16, 16, 16, 16' spacing = '8'>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'auPrefGmPopupDesc'
type = 'OptionsLabel'
/>
@@ -459,7 +456,7 @@
type = 'PopUp'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'mcFontButton'
type = 'Button'
/>
@@ -474,7 +471,7 @@
<widget name = 'mcMixedCheckbox'
type = 'Checkbox'
/>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'mcMidiGainText'
type = 'OptionsLabel'
/>
@@ -495,7 +492,7 @@
<dialog name = 'GlobalOptions_MT32' overlays = 'Dialog.GlobalOptions.TabWidget'>
<layout type = 'vertical' padding = '16, 16, 16, 16' spacing = '8'>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'auPrefMt32PopupDesc'
type = 'OptionsLabel'
/>
@@ -514,7 +511,7 @@
<dialog name = 'GlobalOptions_Paths' overlays = 'Dialog.GlobalOptions.TabWidget'>
<layout type = 'vertical' padding = '16, 16, 16, 16' spacing = '8'>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'SaveButton'
type = 'Button'
/>
@@ -526,7 +523,7 @@
width = 'Globals.Line.Height'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'ThemeButton'
type = 'Button'
/>
@@ -538,7 +535,7 @@
width = 'Globals.Line.Height'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'ExtraButton'
type = 'Button'
/>
@@ -550,7 +547,7 @@
width = 'Globals.Line.Height'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'PluginsButton'
type = 'Button'
/>
@@ -563,7 +560,7 @@
<dialog name = 'GlobalOptions_Misc' overlays = 'Dialog.GlobalOptions.TabWidget'>
<layout type = 'vertical' padding = '16, 16, 16, 16' spacing = '8'>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'ThemeButton'
type = 'Button'
/>
@@ -571,7 +568,7 @@
height = 'Globals.Line.Height'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'RendererPopupDesc'
type = 'OptionsLabel'
/>
@@ -579,7 +576,7 @@
type = 'PopUp'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'AutosavePeriodPopupDesc'
type = 'OptionsLabel'
/>
@@ -587,7 +584,7 @@
type = 'PopUp'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'GuiLanguagePopupDesc'
type = 'OptionsLabel'
/>
@@ -595,17 +592,17 @@
type = 'PopUp'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'GuiLanguageUseGameLanguage'
type = 'Checkbox'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'UseSystemDialogs'
type = 'Checkbox'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'UpdatesPopupDesc'
type = 'OptionsLabel'
/>
@@ -643,7 +640,7 @@
/>
</layout>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<layout type = 'vertical' padding = '0, 0, 8, 0' spacing = '4'>
<widget name = 'StorageDisabledHint'
height = 'Globals.Line.Height'
@@ -653,7 +650,7 @@
/>
</layout>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<layout type = 'vertical' padding = '0, 0, 6, 0' spacing = '2'>
<widget name = 'StorageUsernameDesc'
type = 'CloudTabLabel'
@@ -671,7 +668,7 @@
/>
</layout>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<layout type = 'vertical' padding = '0, 0, 6, 0' spacing = '2'>
<widget name = 'StorageLastSyncDesc'
type = 'CloudTabLabel'
@@ -686,12 +683,12 @@
/>
</layout>
</layout>
- <layout type = 'horizontal' padding = '0, 0, -4, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, -4, 0' spacing = '10' align = 'center'>
<widget name = 'StorageSyncHint'
height = 'Globals.Line.Height'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<layout type = 'vertical' padding = '0, 0, 6, 0' spacing = '4'>
<widget name = 'StorageDownloadHint'
height = 'Globals.Line.Height'
@@ -701,7 +698,7 @@
/>
</layout>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<layout type = 'vertical' padding = '0, 0, 8, 0' spacing = '4'>
<widget name = 'StorageDisconnectHint'
height = 'Globals.Line.Height'
@@ -718,7 +715,7 @@
height = 'Globals.Line.Height'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, -4, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, -4, 0' spacing = '10' align = 'center'>
<layout type = 'vertical' padding = '0, 0, 2, 0' spacing = '4'>
<widget name = 'StorageWizardOpenLinkHint'
width = '96'
@@ -732,12 +729,12 @@
/>
</layout>
</layout>
- <layout type = 'horizontal' padding = '0, 0, -2, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, -2, 0' spacing = '10' align = 'center'>
<widget name = 'StorageWizardCodeHint'
height = 'Globals.Line.Height'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<layout type = 'vertical' padding = '0, 0, -2, 0' spacing = '2'>
<widget name = 'StorageWizardCodeBox'
width = '108'
@@ -750,7 +747,7 @@
/>
</layout>
</layout>
- <layout type = 'horizontal' padding = '0, 0, -2, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, -2, 0' spacing = '10' align = 'center'>
<widget name = 'StorageWizardConnectButton'
type = 'Button'
/>
@@ -763,7 +760,7 @@
<dialog name = 'GlobalOptions_Network' overlays = 'Dialog.GlobalOptions.TabWidget'>
<layout type = 'vertical' padding = '16, 16, 16, 16' spacing = '8'>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'RunServerButton'
type = 'Button'
/>
@@ -771,7 +768,7 @@
height = 'Globals.Line.Height'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'RootPathButton'
type = 'Button'
/>
@@ -783,7 +780,7 @@
width = 'Globals.Line.Height'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'ServerPortDesc'
type = 'OptionsLabel'
/>
@@ -796,7 +793,7 @@
width = 'Globals.Line.Height'
/>
</layout>
- <layout type = 'vertical' padding = '0, 0, 0, 0' spacing = '4' center = 'true'>
+ <layout type = 'vertical' padding = '0, 0, 0, 0' spacing = '4' align = 'center'>
<widget name = 'FeatureDescriptionLine1'
height = 'Globals.Line.Height'
/>
@@ -850,7 +847,7 @@
<dialog name = 'GlobalOptions_Cloud_ConnectionWizard_Container' overlays = 'GlobalOptions_Cloud_ConnectionWizard.Container'>
<layout type = 'vertical' padding = '16, 16, 16, 16' spacing = '0'>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<layout type = 'vertical' padding = '0, 0, 0, 0' spacing = '6'>
<widget name = 'Picture'
width = '109'
@@ -881,7 +878,7 @@
<widget name = 'ReturnLine2'
height = 'Globals.Line.Height'
/>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '4' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '4' align = 'center'>
<widget name = 'CodeBox1'
width = '70'
height = 'Globals.Line.Height'
@@ -899,7 +896,7 @@
height = 'Globals.Line.Height'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '4' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '4' align = 'center'>
<widget name = 'CodeBox5'
width = '70'
height = 'Globals.Line.Height'
@@ -923,7 +920,7 @@
<space size = '6' />
</layout>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'CancelButton'
type = 'Button'
/>
@@ -946,7 +943,7 @@
</layout>
</dialog>
<dialog name='KeysDialog' overlays='Dialog.GlobalOptions' shading='dim'>
- <layout type='vertical' padding='8,8,8,8' center='true'>
+ <layout type='vertical' padding='8,8,8,8' align = 'center'>
<widget name='Action'
height='Globals.Line.Height'
/>
@@ -1037,7 +1034,7 @@
<dialog name = 'GameOptions_Game' overlays = 'Dialog.GameOptions.TabWidget' shading = 'dim'>
<layout type = 'vertical' padding = '16, 16, 16, 16'>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'Id'
type = 'OptionsLabel'
/>
@@ -1045,7 +1042,7 @@
type = 'PopUp'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'Name'
type = 'OptionsLabel'
/>
@@ -1053,7 +1050,7 @@
type = 'PopUp'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'LangPopupDesc'
type = 'OptionsLabel'
/>
@@ -1061,7 +1058,7 @@
type = 'PopUp'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'PlatformPopupDesc'
type = 'OptionsLabel'
/>
@@ -1074,7 +1071,7 @@
<dialog name = 'GameOptions_Paths' overlays = 'Dialog.GameOptions.TabWidget' shading = 'dim'>
<layout type = 'vertical' padding = '16, 16, 16, 16'>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '16' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '16' align = 'center'>
<widget name = 'Savepath'
type = 'Button'
/>
@@ -1086,7 +1083,7 @@
width = 'Globals.Line.Height'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '16' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '16' align = 'center'>
<widget name = 'Extrapath'
type = 'Button'
/>
@@ -1098,7 +1095,7 @@
width = 'Globals.Line.Height'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '16' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '16' align = 'center'>
<widget name = 'Gamepath'
type = 'Button'
/>
@@ -1136,7 +1133,7 @@
</dialog>
<dialog name = 'GlobalMenu' overlays = 'screen_center'>
- <layout type = 'vertical' padding = '16, 16, 16, 16' center = 'true'>
+ <layout type = 'vertical' padding = '16, 16, 16, 16' align = 'center'>
<widget name = 'Logo'
width = '210'
height = '40'
@@ -1186,8 +1183,8 @@
<dialog name = 'GlobalConfig' overlays = 'screen_center'>
<layout type = 'vertical' padding = '8, 8, 8, 8' spacing = '8'>
<layout type = 'horizontal' padding = '0, 0, 0, 0'>
- <layout type = 'vertical' padding = '0, 0, 0, 0' spacing = '8' center = 'true'>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'vertical' padding = '0, 0, 0, 0' spacing = '8' align = 'center'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'vcMusicText'
type = 'OptionsLabel'
/>
@@ -1198,7 +1195,7 @@
type = 'SmallLabel'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'vcSfxText'
type = 'OptionsLabel'
/>
@@ -1209,7 +1206,7 @@
type = 'SmallLabel'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'vcSpeechText'
type = 'OptionsLabel'
/>
@@ -1222,7 +1219,7 @@
</layout>
</layout>
- <layout type = 'vertical' padding = '24, 24, 24, 24' center = 'true'>
+ <layout type = 'vertical' padding = '24, 24, 24, 24' align = 'center'>
<widget name = 'vcMuteCheckbox'
type = 'Checkbox'
width = '120' <!-- FIXME: Why this is needed? -->
@@ -1297,7 +1294,7 @@
<widget name = 'EnableTabCheckbox'
type = 'Checkbox'
/>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'VoiceCountText'
type = 'OptionsLabel'
/>
@@ -1309,7 +1306,7 @@
height = 'Globals.Line.Height'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'LevelText'
type = 'OptionsLabel'
/>
@@ -1321,7 +1318,7 @@
height = 'Globals.Line.Height'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'SpeedText'
type = 'OptionsLabel'
/>
@@ -1333,7 +1330,7 @@
height = 'Globals.Line.Height'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'DepthText'
type = 'OptionsLabel'
/>
@@ -1345,7 +1342,7 @@
height = 'Globals.Line.Height'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'WaveFormTypeText'
type = 'OptionsLabel'
/>
@@ -1361,7 +1358,7 @@
<widget name = 'EnableTabCheckbox'
type = 'Checkbox'
/>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'RoomSizeText'
type = 'OptionsLabel'
/>
@@ -1373,7 +1370,7 @@
height = 'Globals.Line.Height'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'DampingText'
type = 'OptionsLabel'
/>
@@ -1385,7 +1382,7 @@
height = 'Globals.Line.Height'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'WidthText'
type = 'OptionsLabel'
/>
@@ -1397,7 +1394,7 @@
height = 'Globals.Line.Height'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'LevelText'
type = 'OptionsLabel'
/>
@@ -1414,7 +1411,7 @@
<dialog name = 'FluidSynthSettings_Misc' overlays = 'Dialog.FluidSynthSettings.TabWidget'>
<layout type = 'vertical' padding = '16, 16, 16, 16' spacing = '8'>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'InterpolationText'
type = 'OptionsLabel'
/>
@@ -1426,7 +1423,7 @@
</dialog>
<dialog name = 'SaveLoadChooser' overlays = 'screen' inset = '8' shading = 'dim'>
- <layout type = 'vertical' padding = '8, 8, 8, 32' center = 'true'>
+ <layout type = 'vertical' padding = '8, 8, 8, 32' align = 'center'>
<layout type = 'horizontal' padding = '0, 0, 0, 0'>
<widget name = 'Title'
height = 'Globals.Line.Height'
@@ -1469,7 +1466,7 @@
</dialog>
<dialog name = 'SaveLoadCloudSyncProgress' overlays = 'screen_center' inset = '8' shading = 'dim'>
- <layout type = 'vertical' padding = '8, 8, 8, 8' center = 'true'>
+ <layout type = 'vertical' padding = '8, 8, 8, 8' align = 'center'>
<widget name = 'TitleText'
width = '496'
height = 'Globals.Line.Height'
@@ -1487,7 +1484,7 @@
textalign = 'center'
/>
<space size = '1'/>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' center = 'true' spacing = '10'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' align = 'center' spacing = '10'>
<widget name = 'Cancel'
width = '150'
height = 'Globals.Button.Height'
@@ -1522,7 +1519,7 @@
</dialog>
<dialog name = 'RecorderDialog' overlays = 'screen' inset = '8' shading = 'dim'>
- <layout type = 'vertical' padding = '8, 8, 8, 32' center = 'true'>
+ <layout type = 'vertical' padding = '8, 8, 8, 32' align = 'center'>
<widget name = 'Title'
height = 'Globals.Line.Height'
/>
@@ -1576,7 +1573,7 @@
</dialog>
<dialog name = 'OnScreenDialog' overlays = 'screen_center'>
- <layout type = 'horizontal' spacing = '5' padding = '5, 3, 5, 3' center = 'true'>
+ <layout type = 'horizontal' spacing = '5' padding = '5, 3, 5, 3' align = 'center'>
<widget name = 'StopButton'
width = '32'
height = '32'
@@ -1601,7 +1598,7 @@
</dialog>
<dialog name = 'EditRecordDialog' overlays = 'screen_center'>
- <layout type = 'vertical' padding = '8, 8, 8, 8' center = 'true'>
+ <layout type = 'vertical' padding = '8, 8, 8, 8' align = 'center'>
<widget name = 'Title'
width = '320'
height = 'Globals.Line.Height'
@@ -1642,7 +1639,7 @@
</dialog>
<dialog name = 'ScummHelp' overlays = 'screen_center'>
- <layout type = 'vertical' padding = '8, 8, 8, 8' center = 'true'>
+ <layout type = 'vertical' padding = '8, 8, 8, 8' align = 'center'>
<widget name = 'Title'
width = '320'
height = 'Globals.Line.Height'
@@ -1666,7 +1663,7 @@
</dialog>
<dialog name = 'LoomTownsDifficultyDialog' overlays = 'screen_center'>
- <layout type = 'vertical' padding = '8, 8, 8, 8' center = 'true'>
+ <layout type = 'vertical' padding = '8, 8, 8, 8' align = 'center'>
<widget name = 'Description1'
width = '320'
height = 'Globals.Line.Height'
@@ -1687,7 +1684,7 @@
</dialog>
<dialog name = 'MassAdd' overlays = 'screen_center' shading = 'dim'>
- <layout type = 'vertical' padding = '8, 8, 32, 8' center = 'true'>
+ <layout type = 'vertical' padding = '8, 8, 32, 8' align = 'center'>
<widget name = 'DirProgressText'
width = '480'
height = 'Globals.Line.Height'
@@ -1712,8 +1709,8 @@
</dialog>
<dialog name = 'KeyMapper' overlays = 'screen_center' shading = 'dim'>
- <layout type = 'vertical' padding = '8, 8, 32, 8' spacing = '10' center = 'true'>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'vertical' padding = '8, 8, 32, 8' spacing = '10' align = 'center'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'PopupDesc'
type = 'OptionsLabel'
/>
@@ -1733,7 +1730,7 @@
</layout>
</dialog>
<dialog name = 'Predictive' overlays = 'screen_center'>
- <layout type = 'vertical' padding = '5, 5, 5, 5' center = 'true'>
+ <layout type = 'vertical' padding = '5, 5, 5, 5' align = 'center'>
<widget name = 'Headline'
height = 'Globals.Line.Height'
width = '210'
diff --git a/gui/themes/scummmodern/scummmodern_layout_lowres.stx b/gui/themes/scummmodern/scummmodern_layout_lowres.stx
index 41ba0795ce..c5e0155011 100644
--- a/gui/themes/scummmodern/scummmodern_layout_lowres.stx
+++ b/gui/themes/scummmodern/scummmodern_layout_lowres.stx
@@ -121,7 +121,7 @@
</globals>
<dialog name = 'Launcher' overlays = 'screen'>
- <layout type = 'vertical' center = 'true' padding = '4, 4, 2, 2' spacing = '2'>
+ <layout type = 'vertical' align = 'center' padding = '4, 4, 2, 2' spacing = '2'>
<widget name = 'Version'
height = 'Globals.Line.Height'
textalign = 'center'
@@ -266,7 +266,7 @@
type = 'SmallLabel'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'grJoystickDeadzoneDesc'
type = 'OptionsLabel'
/>
@@ -287,7 +287,7 @@
</dialog>
<dialog name = 'GlobalOptions_Graphics_Container' overlays = 'GlobalOptions_Graphics.Container'>
<layout type = 'vertical' padding = '16, 16, 16, 16' spacing = '8'>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' align = 'center'>
<widget name = 'grModePopupDesc'
type = 'OptionsLabel'
/>
@@ -295,7 +295,7 @@
type = 'PopUp'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' align = 'center'>
<widget name = 'grRenderPopupDesc'
type = 'OptionsLabel'
/>
@@ -303,7 +303,7 @@
type = 'PopUp'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' align = 'center'>
<widget name = 'grStretchModePopupDesc'
type = 'OptionsLabel'
/>
@@ -325,7 +325,7 @@
<dialog name = 'GlobalOptions_Shader' overlays = 'Dialog.GlobalOptions.TabWidget'>
<layout type = 'vertical' padding = '16, 16, 16, 16' spacing = '8'>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'grShaderPopUpDesc'
type = 'OptionsLabel'
/>
@@ -338,7 +338,7 @@
<dialog name = 'GlobalOptions_Audio' overlays = 'Dialog.GlobalOptions.TabWidget'>
<layout type = 'vertical' padding = '16, 16, 16, 16' spacing = '8'>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' align = 'center'>
<widget name = 'auMidiPopupDesc'
type = 'OptionsLabel'
/>
@@ -346,7 +346,7 @@
type = 'PopUp'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' align = 'center'>
<widget name = 'auOPLPopupDesc'
type = 'OptionsLabel'
/>
@@ -354,7 +354,7 @@
type = 'PopUp'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '3' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '3' align = 'center'>
<widget name = 'subToggleDesc'
type = 'OptionsLabel'
/>
@@ -368,7 +368,7 @@
type = 'Radiobutton'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' align = 'center'>
<widget name = 'subSubtitleSpeedDesc'
type = 'OptionsLabel'
/>
@@ -417,7 +417,7 @@
type = 'SmallLabel'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '8' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '8' align = 'center'>
<space size = '105' />
<widget name = 'vcMuteCheckbox'
type = 'Checkbox'
@@ -428,7 +428,7 @@
<dialog name = 'GlobalOptions_MIDI' overlays = 'Dialog.GlobalOptions.TabWidget'>
<layout type = 'vertical' padding = '16, 16, 16, 16' spacing = '7'>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' align = 'center'>
<widget name = 'auPrefGmPopupDesc'
type = 'OptionsLabel'
/>
@@ -436,7 +436,7 @@
type = 'PopUp'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '16' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '16' align = 'center'>
<widget name = 'mcFontButton'
type = 'Button'
/>
@@ -451,7 +451,7 @@
<widget name = 'mcMixedCheckbox'
type = 'Checkbox'
/>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' align = 'center'>
<widget name = 'mcMidiGainText'
type = 'OptionsLabel'
/>
@@ -472,7 +472,7 @@
<dialog name = 'GlobalOptions_MT32' overlays = 'Dialog.GlobalOptions.TabWidget'>
<layout type = 'vertical' padding = '16, 16, 16, 16' spacing = '8'>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' align = 'center'>
<widget name = 'auPrefMt32PopupDesc'
type = 'OptionsLabel'
/>
@@ -491,7 +491,7 @@
<dialog name = 'GlobalOptions_Paths' overlays = 'Dialog.GlobalOptions.TabWidget'>
<layout type = 'vertical' padding = '16, 16, 16, 16' spacing = '8'>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '16' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '16' align = 'center'>
<widget name = 'SaveButton'
type = 'Button'
/>
@@ -503,7 +503,7 @@
width = 'Globals.Line.Height'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '16' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '16' align = 'center'>
<widget name = 'ThemeButton'
type = 'Button'
/>
@@ -515,7 +515,7 @@
width = 'Globals.Line.Height'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '16' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '16' align = 'center'>
<widget name = 'ExtraButton'
type = 'Button'
/>
@@ -527,7 +527,7 @@
width = 'Globals.Line.Height'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '16' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '16' align = 'center'>
<widget name = 'PluginsButton'
type = 'Button'
/>
@@ -540,7 +540,7 @@
<dialog name = 'GlobalOptions_Misc' overlays = 'Dialog.GlobalOptions.TabWidget'>
<layout type = 'vertical' padding = '16, 16, 16, 16' spacing = '8'>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '16' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '16' align = 'center'>
<widget name = 'ThemeButton'
type = 'Button'
/>
@@ -548,7 +548,7 @@
height = 'Globals.Line.Height'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' align = 'center'>
<widget name = 'RendererPopupDesc'
width = '80'
height = 'Globals.Line.Height'
@@ -558,7 +558,7 @@
type = 'PopUp'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' align = 'center'>
<widget name = 'AutosavePeriodPopupDesc'
width = '80'
height = 'Globals.Line.Height'
@@ -568,7 +568,7 @@
type = 'PopUp'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' align = 'center'>
<widget name = 'GuiLanguagePopupDesc'
width = '80'
height = 'Globals.Line.Height'
@@ -578,17 +578,17 @@
type = 'PopUp'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' align = 'center'>
<widget name = 'GuiLanguageUseGameLanguage'
type = 'Checkbox'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' align = 'center'>
<widget name = 'UseSystemDialogs'
type = 'Checkbox'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' align = 'center'>
<widget name = 'UpdatesPopupDesc'
width = '80'
height = 'Globals.Line.Height'
@@ -629,7 +629,7 @@
/>
</layout>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' align = 'center'>
<layout type = 'vertical' padding = '0, 0, 3, 0' spacing = '4'>
<widget name = 'StorageDisabledHint'
height = 'Globals.Line.Height'
@@ -639,7 +639,7 @@
/>
</layout>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' align = 'center'>
<layout type = 'vertical' padding = '0, 0, 3, 0' spacing = '1'>
<widget name = 'StorageUsernameDesc'
type = 'CloudTabLabel'
@@ -657,7 +657,7 @@
/>
</layout>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' align = 'center'>
<layout type = 'vertical' padding = '0, 0, 3, 0' spacing = '1'>
<widget name = 'StorageLastSyncDesc'
type = 'CloudTabLabel'
@@ -672,12 +672,12 @@
/>
</layout>
</layout>
- <layout type = 'horizontal' padding = '0, 0, -3, 0' spacing = '6' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, -3, 0' spacing = '6' align = 'center'>
<widget name = 'StorageSyncHint'
height = 'Globals.Line.Height'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' align = 'center'>
<layout type = 'vertical' padding = '0, 0, 3, 0' spacing = '4'>
<widget name = 'StorageDownloadHint'
height = 'Globals.Line.Height'
@@ -687,7 +687,7 @@
/>
</layout>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' align = 'center'>
<layout type = 'vertical' padding = '0, 0, 3, 0' spacing = '4'>
<widget name = 'StorageDisconnectHint'
height = 'Globals.Line.Height'
@@ -704,7 +704,7 @@
height = 'Globals.Line.Height'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, -3, 0' spacing = '6' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, -3, 0' spacing = '6' align = 'center'>
<layout type = 'vertical' padding = '0, 0, 1, 0' spacing = '2'>
<widget name = 'StorageWizardOpenLinkHint'
width = '90'
@@ -718,12 +718,12 @@
/>
</layout>
</layout>
- <layout type = 'horizontal' padding = '0, 0, -2, 0' spacing = '6' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, -2, 0' spacing = '6' align = 'center'>
<widget name = 'StorageWizardCodeHint'
height = 'Globals.Line.Height'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' align = 'center'>
<layout type = 'vertical' padding = '0, 0, -2, 0' spacing = '2'>
<widget name = 'StorageWizardCodeBox'
width = '72'
@@ -736,7 +736,7 @@
/>
</layout>
</layout>
- <layout type = 'horizontal' padding = '0, 0, -2, 0' spacing = '6' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, -2, 0' spacing = '6' align = 'center'>
<widget name = 'StorageWizardConnectButton'
type = 'Button'
/>
@@ -749,7 +749,7 @@
<dialog name = 'GlobalOptions_Network' overlays = 'Dialog.GlobalOptions.TabWidget'>
<layout type = 'vertical' padding = '16, 16, 16, 16' spacing = '8'>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' align = 'center'>
<widget name = 'RunServerButton'
type = 'Button'
/>
@@ -757,7 +757,7 @@
height = 'Globals.Line.Height'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '16' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '16' align = 'center'>
<widget name = 'RootPathButton'
type = 'Button'
/>
@@ -769,7 +769,7 @@
width = 'Globals.Line.Height'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' align = 'center'>
<widget name = 'ServerPortDesc'
width = '80'
height = 'Globals.Line.Height'
@@ -784,7 +784,7 @@
width = 'Globals.Line.Height'
/>
</layout>
- <layout type = 'vertical' padding = '0, 0, 0, 0' spacing = '2' center = 'true'>
+ <layout type = 'vertical' padding = '0, 0, 0, 0' spacing = '2' align = 'center'>
<widget name = 'FeatureDescriptionLine1'
height = 'Globals.Line.Height'
/>
@@ -856,7 +856,7 @@
<widget name = 'ReturnLine2'
height = 'Globals.Line.Height'
/>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '4' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '4' align = 'center'>
<widget name = 'CodeBox1'
width = '60'
height = '16'
@@ -874,7 +874,7 @@
height = '16'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '4' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '4' align = 'center'>
<widget name = 'CodeBox5'
width = '60'
height = '16'
@@ -895,7 +895,7 @@
<widget name = 'MessageLine'
height = 'Globals.Line.Height'
/>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '4' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '4' align = 'center'>
<widget name = 'OpenUrlButton'
type = 'Button'
/>
@@ -903,7 +903,7 @@
type = 'Button'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '4' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '4' align = 'center'>
<widget name = 'CancelButton'
type = 'Button'
/>
@@ -930,7 +930,7 @@
</dialog>
<dialog name='KeysDialog' overlays='Dialog.GlobalOptions' shading='dim'>
- <layout type='vertical' padding='8,8,8,8' center='true'>
+ <layout type='vertical' padding='8,8,8,8' align = 'center'>
<widget name='Action'
height='Globals.Line.Height'
/>
@@ -1021,7 +1021,7 @@
<dialog name = 'GameOptions_Game' overlays = 'Dialog.GameOptions.TabWidget' shading = 'dim'>
<layout type = 'vertical' padding = '8, 8, 8, 8'>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' align = 'center'>
<widget name = 'Id'
width = '35'
height = 'Globals.Line.Height'
@@ -1031,7 +1031,7 @@
type = 'PopUp'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' align = 'center'>
<widget name = 'Name'
width = '35'
height = 'Globals.Line.Height'
@@ -1042,7 +1042,7 @@
/>
</layout>
<space size = '8'/>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' align = 'center'>
<widget name = 'LangPopupDesc'
width = '60'
height = 'Globals.Line.Height'
@@ -1052,7 +1052,7 @@
type = 'PopUp'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' align = 'center'>
<widget name = 'PlatformPopupDesc'
width = '60'
height = 'Globals.Line.Height'
@@ -1067,7 +1067,7 @@
<dialog name = 'GameOptions_Paths' overlays = 'Dialog.GameOptions.TabWidget' shading = 'dim'>
<layout type = 'vertical' padding = '8, 8, 8, 8'>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '16' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '16' align = 'center'>
<widget name = 'Savepath'
type = 'Button'
/>
@@ -1079,7 +1079,7 @@
width = 'Globals.Line.Height'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '16' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '16' align = 'center'>
<widget name = 'Extrapath'
type = 'Button'
/>
@@ -1091,7 +1091,7 @@
width = 'Globals.Line.Height'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '16' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '16' align = 'center'>
<widget name = 'Gamepath'
type = 'Button'
/>
@@ -1129,7 +1129,7 @@
</dialog>
<dialog name = 'GlobalMenu' overlays = 'screen_center'>
- <layout type = 'vertical' padding = '4, 4, 4, 4' center = 'true' spacing='2'>
+ <layout type = 'vertical' padding = '4, 4, 4, 4' align = 'center' spacing='2'>
<widget name = 'Title'
width = '160'
height = 'Globals.Line.Height'
@@ -1178,7 +1178,7 @@
<dialog name = 'GlobalConfig' overlays = 'screen_center'>
<layout type = 'vertical' padding = '8, 8, 8, 8'>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' align = 'center'>
<widget name = 'vcMusicText'
type = 'OptionsLabel'
/>
@@ -1189,7 +1189,7 @@
type = 'SmallLabel'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' align = 'center'>
<widget name = 'vcSfxText'
type = 'OptionsLabel'
/>
@@ -1200,7 +1200,7 @@
type = 'SmallLabel'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' align = 'center'>
<widget name = 'vcSpeechText'
type = 'OptionsLabel'
/>
@@ -1211,7 +1211,7 @@
type = 'SmallLabel'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' align = 'center'>
<space size = '100' />
<widget name = 'vcMuteCheckbox'
type = 'Checkbox'
@@ -1219,11 +1219,11 @@
/>
</layout>
<space size = '4' />
- <layout type = 'vertical' padding = '0, 0, 0, 0' spacing = '6' center = 'true'>
+ <layout type = 'vertical' padding = '0, 0, 0, 0' spacing = '6' align = 'center'>
<widget name = 'subToggleDesc'
type = 'OptionsLabel'
/>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' align = 'center'>
<widget name = 'subToggleSpeechOnly'
type = 'Radiobutton'
width = '90'
@@ -1239,7 +1239,7 @@
</layout>
</layout>
<space size = '4' />
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' align = 'center'>
<widget name = 'subSubtitleSpeedDesc'
type = 'OptionsLabel'
/>
@@ -1289,7 +1289,7 @@
<widget name = 'EnableTabCheckbox'
type = 'Checkbox'
/>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'VoiceCountText'
type = 'OptionsLabel'
/>
@@ -1301,7 +1301,7 @@
height = 'Globals.Line.Height'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'LevelText'
type = 'OptionsLabel'
/>
@@ -1313,7 +1313,7 @@
height = 'Globals.Line.Height'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'SpeedText'
type = 'OptionsLabel'
/>
@@ -1325,7 +1325,7 @@
height = 'Globals.Line.Height'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'DepthText'
type = 'OptionsLabel'
/>
@@ -1337,7 +1337,7 @@
height = 'Globals.Line.Height'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'WaveFormTypeText'
type = 'OptionsLabel'
/>
@@ -1353,7 +1353,7 @@
<widget name = 'EnableTabCheckbox'
type = 'Checkbox'
/>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'RoomSizeText'
type = 'OptionsLabel'
/>
@@ -1365,7 +1365,7 @@
height = 'Globals.Line.Height'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'DampingText'
type = 'OptionsLabel'
/>
@@ -1377,7 +1377,7 @@
height = 'Globals.Line.Height'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'WidthText'
type = 'OptionsLabel'
/>
@@ -1389,7 +1389,7 @@
height = 'Globals.Line.Height'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'LevelText'
type = 'OptionsLabel'
/>
@@ -1406,7 +1406,7 @@
<dialog name = 'FluidSynthSettings_Misc' overlays = 'Dialog.FluidSynthSettings.TabWidget'>
<layout type = 'vertical' padding = '8, 8, 8, 8' spacing = '6'>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'InterpolationText'
type = 'OptionsLabel'
/>
@@ -1418,7 +1418,7 @@
</dialog>
<dialog name = 'SaveLoadChooser' overlays = 'screen' inset = '8' shading = 'dim'>
- <layout type = 'vertical' padding = '8, 8, 8, 8' center = 'true'>
+ <layout type = 'vertical' padding = '8, 8, 8, 8' align = 'center'>
<widget name = 'Title' height = 'Globals.Line.Height'/>
<widget name = 'List' />
<layout type = 'horizontal' padding = '0, 0, 16, 0'>
@@ -1446,7 +1446,7 @@
</dialog>
<dialog name = 'SaveLoadCloudSyncProgress' overlays = 'screen_center' inset = '8' shading = 'dim'>
- <layout type = 'vertical' padding = '8, 8, 8, 8' center = 'true'>
+ <layout type = 'vertical' padding = '8, 8, 8, 8' align = 'center'>
<widget name = 'TitleText'
width = '240'
height = 'Globals.Line.Height'
@@ -1464,7 +1464,7 @@
textalign = 'center'
/>
<space size = '1'/>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' center = 'true' spacing = '10'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' align = 'center' spacing = '10'>
<widget name = 'Cancel'
width = '100'
height = 'Globals.Button.Height'
@@ -1519,7 +1519,7 @@
</dialog>
<dialog name = 'RecorderDialog' overlays = 'screen' inset = '8' shading = 'dim'>
- <layout type = 'vertical' padding = '8, 8, 8, 4' center = 'true'>
+ <layout type = 'vertical' padding = '8, 8, 8, 4' align = 'center'>
<widget name = 'Title'
height = 'Globals.Line.Height'
/>
@@ -1549,7 +1549,7 @@
</dialog>
<dialog name = 'OnScreenDialog' overlays = 'screen_center'>
- <layout type = 'horizontal' spacing = '5' padding = '3, 2, 3, 2' center = 'true'>
+ <layout type = 'horizontal' spacing = '5' padding = '3, 2, 3, 2' align = 'center'>
<widget name = 'StopButton'
width = '16'
height = '16'
@@ -1574,7 +1574,7 @@
</dialog>
<dialog name = 'EditRecordDialog' overlays = 'screen_center'>
- <layout type = 'vertical' padding = '8, 8, 8, 8' center = 'true'>
+ <layout type = 'vertical' padding = '8, 8, 8, 8' align = 'center'>
<widget name = 'Title'
height = 'Globals.Line.Height'
/>
@@ -1638,7 +1638,7 @@
</dialog>
<dialog name = 'LoomTownsDifficultyDialog' overlays = 'screen_center'>
- <layout type = 'vertical' padding = '8, 8, 8, 8' center = 'true'>
+ <layout type = 'vertical' padding = '8, 8, 8, 8' align = 'center'>
<widget name = 'Description1'
width = '280'
height = 'Globals.Line.Height'
@@ -1659,7 +1659,7 @@
</dialog>
<dialog name = 'MassAdd' overlays = 'screen_center' shading = 'dim'>
- <layout type = 'vertical' padding = '4, 4, 16, 4' center = 'true'>
+ <layout type = 'vertical' padding = '4, 4, 16, 4' align = 'center'>
<widget name = 'DirProgressText'
width = '280'
height = 'Globals.Line.Height'
@@ -1683,8 +1683,8 @@
</layout>
</dialog>
<dialog name = 'KeyMapper' overlays = 'screen_center' shading = 'dim'>
- <layout type = 'vertical' padding = '8, 8, 8, 8' spacing = '10' center = 'true'>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'vertical' padding = '8, 8, 8, 8' spacing = '10' align = 'center'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'PopupDesc'
type = 'OptionsLabel'
/>
@@ -1704,7 +1704,7 @@
</layout>
</dialog>
<dialog name = 'Predictive' overlays = 'screen_center'>
- <layout type = 'vertical' center = 'true'>
+ <layout type = 'vertical' align = 'center'>
<widget name = 'Headline'
height = 'Globals.Line.Height'
width = '150'
diff --git a/gui/themes/scummremastered.zip b/gui/themes/scummremastered.zip
index 24e58a8bf0..5ed31519a3 100644
--- a/gui/themes/scummremastered.zip
+++ b/gui/themes/scummremastered.zip
Binary files differ
diff --git a/gui/themes/scummremastered/remastered_layout.stx b/gui/themes/scummremastered/remastered_layout.stx
index a603494e05..c5d8eef5c2 100644
--- a/gui/themes/scummremastered/remastered_layout.stx
+++ b/gui/themes/scummremastered/remastered_layout.stx
@@ -77,9 +77,6 @@
<widget name = 'Button'
size = '108, 24'
/>
- <widget name = 'LauncherButton'
- size = '130, 24'
- />
<widget name = 'WideButton'
size = '216, 24'
/>
@@ -134,7 +131,7 @@
</globals>
<dialog name = 'Launcher' overlays = 'screen'>
- <layout type = 'vertical' center = 'true' padding = '23, 23, 8, 23'>
+ <layout type = 'vertical' align = 'center' padding = '23, 23, 8, 23'>
<widget name = 'Logo'
width = '287'
height = '80'
@@ -163,33 +160,33 @@
</layout>
<layout type = 'horizontal' padding = '0, 0, 0, 0'>
<widget name = 'GameList'/>
- <layout type = 'vertical' padding = '10, 0, 0, 0'>
+ <layout type = 'vertical' padding = '10, 0, 0, 0' align = 'stretch'>
<widget name = 'StartButton'
- type = 'LauncherButton'
+ type = 'Button'
/>
<widget name = 'LoadGameButton'
- type = 'LauncherButton'
+ type = 'Button'
/>
<space size = '10' />
<widget name = 'AddGameButton'
- type = 'LauncherButton'
+ type = 'Button'
/>
<widget name = 'EditGameButton'
- type = 'LauncherButton'
+ type = 'Button'
/>
<widget name = 'RemoveGameButton'
- type = 'LauncherButton'
+ type = 'Button'
/>
<space size = '10' />
<widget name = 'OptionsButton'
- type = 'LauncherButton'
+ type = 'Button'
/>
<widget name = 'AboutButton'
- type = 'LauncherButton'
+ type = 'Button'
/>
<space size = '10' />
<widget name = 'QuitButton'
- type = 'LauncherButton'
+ type = 'Button'
/>
</layout>
</layout>
@@ -288,7 +285,7 @@
type = 'SmallLabel'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'grJoystickDeadzoneDesc'
type = 'OptionsLabel'
/>
@@ -309,7 +306,7 @@
</dialog>
<dialog name = 'GlobalOptions_Graphics_Container' overlays = 'GlobalOptions_Graphics.Container'>
<layout type = 'vertical' padding = '16, 16, 16, 16' spacing = '8'>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'grModePopupDesc'
type = 'OptionsLabel'
/>
@@ -317,7 +314,7 @@
type = 'PopUp'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'grRenderPopupDesc'
type = 'OptionsLabel'
/>
@@ -325,7 +322,7 @@
type = 'PopUp'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'grStretchModePopupDesc'
type = 'OptionsLabel'
/>
@@ -347,7 +344,7 @@
<dialog name = 'GlobalOptions_Shader' overlays = 'Dialog.GlobalOptions.TabWidget'>
<layout type = 'vertical' padding = '16, 16, 16, 16' spacing = '8'>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'grShaderPopUpDesc'
type = 'OptionsLabel'
/>
@@ -360,7 +357,7 @@
<dialog name = 'GlobalOptions_Audio' overlays = 'Dialog.GlobalOptions.TabWidget'>
<layout type = 'vertical' padding = '16, 16, 16, 16' spacing = '8'>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'auMidiPopupDesc'
type = 'OptionsLabel'
/>
@@ -368,7 +365,7 @@
type = 'PopUp'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'auOPLPopupDesc'
type = 'OptionsLabel'
/>
@@ -407,7 +404,7 @@
<dialog name = 'GlobalOptions_Volume' overlays = 'Dialog.GlobalOptions.TabWidget'>
<layout type = 'horizontal' padding = '16, 16, 16, 16' spacing = '8'>
<layout type = 'vertical' padding = '0, 0, 0, 0' spacing = '8'>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'vcMusicText'
type = 'OptionsLabel'
/>
@@ -418,7 +415,7 @@
type = 'SmallLabel'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'vcSfxText'
type = 'OptionsLabel'
/>
@@ -429,7 +426,7 @@
type = 'SmallLabel'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'vcSpeechText'
type = 'OptionsLabel'
/>
@@ -441,7 +438,7 @@
/>
</layout>
</layout>
- <layout type = 'vertical' padding = '24, 0, 24, 0' center = 'true'>
+ <layout type = 'vertical' padding = '24, 0, 24, 0' align = 'center'>
<widget name = 'vcMuteCheckbox'
type = 'Checkbox'
/>
@@ -451,7 +448,7 @@
<dialog name = 'GlobalOptions_MIDI' overlays = 'Dialog.GlobalOptions.TabWidget'>
<layout type = 'vertical' padding = '16, 16, 16, 16' spacing = '8'>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'auPrefGmPopupDesc'
type = 'OptionsLabel'
/>
@@ -459,7 +456,7 @@
type = 'PopUp'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'mcFontButton'
type = 'Button'
/>
@@ -474,7 +471,7 @@
<widget name = 'mcMixedCheckbox'
type = 'Checkbox'
/>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'mcMidiGainText'
type = 'OptionsLabel'
/>
@@ -495,7 +492,7 @@
<dialog name = 'GlobalOptions_MT32' overlays = 'Dialog.GlobalOptions.TabWidget'>
<layout type = 'vertical' padding = '16, 16, 16, 16' spacing = '8'>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'auPrefMt32PopupDesc'
type = 'OptionsLabel'
/>
@@ -514,7 +511,7 @@
<dialog name = 'GlobalOptions_Paths' overlays = 'Dialog.GlobalOptions.TabWidget'>
<layout type = 'vertical' padding = '16, 16, 16, 16' spacing = '8'>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'SaveButton'
type = 'Button'
/>
@@ -526,7 +523,7 @@
width = 'Globals.Line.Height'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'ThemeButton'
type = 'Button'
/>
@@ -538,7 +535,7 @@
width = 'Globals.Line.Height'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'ExtraButton'
type = 'Button'
/>
@@ -550,7 +547,7 @@
width = 'Globals.Line.Height'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'PluginsButton'
type = 'Button'
/>
@@ -563,7 +560,7 @@
<dialog name = 'GlobalOptions_Misc' overlays = 'Dialog.GlobalOptions.TabWidget'>
<layout type = 'vertical' padding = '16, 16, 16, 16' spacing = '8'>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'ThemeButton'
type = 'Button'
/>
@@ -571,7 +568,7 @@
height = 'Globals.Line.Height'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'RendererPopupDesc'
type = 'OptionsLabel'
/>
@@ -579,7 +576,7 @@
type = 'PopUp'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'AutosavePeriodPopupDesc'
type = 'OptionsLabel'
/>
@@ -587,7 +584,7 @@
type = 'PopUp'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'GuiLanguagePopupDesc'
type = 'OptionsLabel'
/>
@@ -595,17 +592,17 @@
type = 'PopUp'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'GuiLanguageUseGameLanguage'
type = 'Checkbox'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'UseSystemDialogs'
type = 'Checkbox'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'UpdatesPopupDesc'
type = 'OptionsLabel'
/>
@@ -643,7 +640,7 @@
/>
</layout>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<layout type = 'vertical' padding = '0, 0, 8, 0' spacing = '4'>
<widget name = 'StorageDisabledHint'
height = 'Globals.Line.Height'
@@ -653,7 +650,7 @@
/>
</layout>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<layout type = 'vertical' padding = '0, 0, 6, 0' spacing = '2'>
<widget name = 'StorageUsernameDesc'
type = 'CloudTabLabel'
@@ -671,7 +668,7 @@
/>
</layout>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<layout type = 'vertical' padding = '0, 0, 6, 0' spacing = '2'>
<widget name = 'StorageLastSyncDesc'
type = 'CloudTabLabel'
@@ -686,12 +683,12 @@
/>
</layout>
</layout>
- <layout type = 'horizontal' padding = '0, 0, -4, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, -4, 0' spacing = '10' align = 'center'>
<widget name = 'StorageSyncHint'
height = 'Globals.Line.Height'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<layout type = 'vertical' padding = '0, 0, 6, 0' spacing = '4'>
<widget name = 'StorageDownloadHint'
height = 'Globals.Line.Height'
@@ -701,7 +698,7 @@
/>
</layout>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<layout type = 'vertical' padding = '0, 0, 8, 0' spacing = '4'>
<widget name = 'StorageDisconnectHint'
height = 'Globals.Line.Height'
@@ -718,7 +715,7 @@
height = 'Globals.Line.Height'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, -4, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, -4, 0' spacing = '10' align = 'center'>
<layout type = 'vertical' padding = '0, 0, 2, 0' spacing = '4'>
<widget name = 'StorageWizardOpenLinkHint'
width = '96'
@@ -732,12 +729,12 @@
/>
</layout>
</layout>
- <layout type = 'horizontal' padding = '0, 0, -2, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, -2, 0' spacing = '10' align = 'center'>
<widget name = 'StorageWizardCodeHint'
height = 'Globals.Line.Height'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<layout type = 'vertical' padding = '0, 0, -2, 0' spacing = '2'>
<widget name = 'StorageWizardCodeBox'
width = '108'
@@ -750,7 +747,7 @@
/>
</layout>
</layout>
- <layout type = 'horizontal' padding = '0, 0, -2, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, -2, 0' spacing = '10' align = 'center'>
<widget name = 'StorageWizardConnectButton'
type = 'Button'
/>
@@ -763,7 +760,7 @@
<dialog name = 'GlobalOptions_Network' overlays = 'Dialog.GlobalOptions.TabWidget'>
<layout type = 'vertical' padding = '16, 16, 16, 16' spacing = '8'>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'RunServerButton'
type = 'Button'
/>
@@ -771,7 +768,7 @@
height = 'Globals.Line.Height'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'RootPathButton'
type = 'Button'
/>
@@ -783,7 +780,7 @@
width = 'Globals.Line.Height'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'ServerPortDesc'
type = 'OptionsLabel'
/>
@@ -796,7 +793,7 @@
width = 'Globals.Line.Height'
/>
</layout>
- <layout type = 'vertical' padding = '0, 0, 0, 0' spacing = '4' center = 'true'>
+ <layout type = 'vertical' padding = '0, 0, 0, 0' spacing = '4' align = 'center'>
<widget name = 'FeatureDescriptionLine1'
height = 'Globals.Line.Height'
/>
@@ -850,7 +847,7 @@
<dialog name = 'GlobalOptions_Cloud_ConnectionWizard_Container' overlays = 'GlobalOptions_Cloud_ConnectionWizard.Container'>
<layout type = 'vertical' padding = '16, 16, 16, 16' spacing = '0'>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<layout type = 'vertical' padding = '0, 0, 0, 0' spacing = '6'>
<widget name = 'Picture'
width = '109'
@@ -881,7 +878,7 @@
<widget name = 'ReturnLine2'
height = 'Globals.Line.Height'
/>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '4' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '4' align = 'center'>
<widget name = 'CodeBox1'
width = '70'
height = 'Globals.Line.Height'
@@ -899,7 +896,7 @@
height = 'Globals.Line.Height'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '4' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '4' align = 'center'>
<widget name = 'CodeBox5'
width = '70'
height = 'Globals.Line.Height'
@@ -923,7 +920,7 @@
<space size = '6' />
</layout>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'CancelButton'
type = 'Button'
/>
@@ -946,7 +943,7 @@
</layout>
</dialog>
<dialog name='KeysDialog' overlays='Dialog.GlobalOptions' shading='dim'>
- <layout type='vertical' padding='8,8,8,8' center='true'>
+ <layout type='vertical' padding='8,8,8,8' align = 'center'>
<widget name='Action'
height='Globals.Line.Height'
/>
@@ -1037,7 +1034,7 @@
<dialog name = 'GameOptions_Game' overlays = 'Dialog.GameOptions.TabWidget' shading = 'dim'>
<layout type = 'vertical' padding = '16, 16, 16, 16'>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'Id'
type = 'OptionsLabel'
/>
@@ -1045,7 +1042,7 @@
type = 'PopUp'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'Name'
type = 'OptionsLabel'
/>
@@ -1053,7 +1050,7 @@
type = 'PopUp'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'LangPopupDesc'
type = 'OptionsLabel'
/>
@@ -1061,7 +1058,7 @@
type = 'PopUp'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'PlatformPopupDesc'
type = 'OptionsLabel'
/>
@@ -1074,7 +1071,7 @@
<dialog name = 'GameOptions_Paths' overlays = 'Dialog.GameOptions.TabWidget' shading = 'dim'>
<layout type = 'vertical' padding = '16, 16, 16, 16'>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '16' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '16' align = 'center'>
<widget name = 'Savepath'
type = 'Button'
/>
@@ -1086,7 +1083,7 @@
width = 'Globals.Line.Height'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '16' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '16' align = 'center'>
<widget name = 'Extrapath'
type = 'Button'
/>
@@ -1098,7 +1095,7 @@
width = 'Globals.Line.Height'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '16' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '16' align = 'center'>
<widget name = 'Gamepath'
type = 'Button'
/>
@@ -1136,7 +1133,7 @@
</dialog>
<dialog name = 'GlobalMenu' overlays = 'screen_center'>
- <layout type = 'vertical' padding = '16, 16, 16, 16' center = 'true'>
+ <layout type = 'vertical' padding = '16, 16, 16, 16' align = 'center'>
<widget name = 'Logo'
width = '210'
height = '40'
@@ -1186,8 +1183,8 @@
<dialog name = 'GlobalConfig' overlays = 'screen_center'>
<layout type = 'vertical' padding = '8, 8, 8, 8' spacing = '8'>
<layout type = 'horizontal' padding = '0, 0, 0, 0'>
- <layout type = 'vertical' padding = '0, 0, 0, 0' spacing = '8' center = 'true'>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'vertical' padding = '0, 0, 0, 0' spacing = '8' align = 'center'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'vcMusicText'
type = 'OptionsLabel'
/>
@@ -1198,7 +1195,7 @@
type = 'SmallLabel'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'vcSfxText'
type = 'OptionsLabel'
/>
@@ -1209,7 +1206,7 @@
type = 'SmallLabel'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'vcSpeechText'
type = 'OptionsLabel'
/>
@@ -1222,7 +1219,7 @@
</layout>
</layout>
- <layout type = 'vertical' padding = '24, 24, 24, 24' center = 'true'>
+ <layout type = 'vertical' padding = '24, 24, 24, 24' align = 'center'>
<widget name = 'vcMuteCheckbox'
type = 'Checkbox'
width = '120' <!-- FIXME: Why this is needed? -->
@@ -1297,7 +1294,7 @@
<widget name = 'EnableTabCheckbox'
type = 'Checkbox'
/>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'VoiceCountText'
type = 'OptionsLabel'
/>
@@ -1309,7 +1306,7 @@
height = 'Globals.Line.Height'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'LevelText'
type = 'OptionsLabel'
/>
@@ -1321,7 +1318,7 @@
height = 'Globals.Line.Height'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'SpeedText'
type = 'OptionsLabel'
/>
@@ -1333,7 +1330,7 @@
height = 'Globals.Line.Height'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'DepthText'
type = 'OptionsLabel'
/>
@@ -1345,7 +1342,7 @@
height = 'Globals.Line.Height'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'WaveFormTypeText'
type = 'OptionsLabel'
/>
@@ -1361,7 +1358,7 @@
<widget name = 'EnableTabCheckbox'
type = 'Checkbox'
/>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'RoomSizeText'
type = 'OptionsLabel'
/>
@@ -1373,7 +1370,7 @@
height = 'Globals.Line.Height'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'DampingText'
type = 'OptionsLabel'
/>
@@ -1385,7 +1382,7 @@
height = 'Globals.Line.Height'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'WidthText'
type = 'OptionsLabel'
/>
@@ -1397,7 +1394,7 @@
height = 'Globals.Line.Height'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'LevelText'
type = 'OptionsLabel'
/>
@@ -1414,7 +1411,7 @@
<dialog name = 'FluidSynthSettings_Misc' overlays = 'Dialog.FluidSynthSettings.TabWidget'>
<layout type = 'vertical' padding = '16, 16, 16, 16' spacing = '8'>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'InterpolationText'
type = 'OptionsLabel'
/>
@@ -1426,7 +1423,7 @@
</dialog>
<dialog name = 'SaveLoadChooser' overlays = 'screen' inset = '8' shading = 'dim'>
- <layout type = 'vertical' padding = '8, 8, 8, 32' center = 'true'>
+ <layout type = 'vertical' padding = '8, 8, 8, 32' align = 'center'>
<layout type = 'horizontal' padding = '0, 0, 0, 0'>
<widget name = 'Title'
height = 'Globals.Line.Height'
@@ -1469,7 +1466,7 @@
</dialog>
<dialog name = 'SaveLoadCloudSyncProgress' overlays = 'screen_center' inset = '8' shading = 'dim'>
- <layout type = 'vertical' padding = '8, 8, 8, 8' center = 'true'>
+ <layout type = 'vertical' padding = '8, 8, 8, 8' align = 'center'>
<widget name = 'TitleText'
width = '496'
height = 'Globals.Line.Height'
@@ -1487,7 +1484,7 @@
textalign = 'center'
/>
<space size = '1'/>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' center = 'true' spacing = '10'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' align = 'center' spacing = '10'>
<widget name = 'Cancel'
width = '150'
height = 'Globals.Button.Height'
@@ -1522,7 +1519,7 @@
</dialog>
<dialog name = 'RecorderDialog' overlays = 'screen' inset = '8' shading = 'dim'>
- <layout type = 'vertical' padding = '8, 8, 8, 32' center = 'true'>
+ <layout type = 'vertical' padding = '8, 8, 8, 32' align = 'center'>
<widget name = 'Title'
height = 'Globals.Line.Height'
/>
@@ -1576,7 +1573,7 @@
</dialog>
<dialog name = 'OnScreenDialog' overlays = 'screen_center'>
- <layout type = 'horizontal' spacing = '5' padding = '5, 3, 5, 3' center = 'true'>
+ <layout type = 'horizontal' spacing = '5' padding = '5, 3, 5, 3' align = 'center'>
<widget name = 'StopButton'
width = '32'
height = '32'
@@ -1601,7 +1598,7 @@
</dialog>
<dialog name = 'EditRecordDialog' overlays = 'screen_center'>
- <layout type = 'vertical' padding = '8, 8, 8, 8' center = 'true'>
+ <layout type = 'vertical' padding = '8, 8, 8, 8' align = 'center'>
<widget name = 'Title'
width = '320'
height = 'Globals.Line.Height'
@@ -1642,7 +1639,7 @@
</dialog>
<dialog name = 'ScummHelp' overlays = 'screen_center'>
- <layout type = 'vertical' padding = '8, 8, 8, 8' center = 'true'>
+ <layout type = 'vertical' padding = '8, 8, 8, 8' align = 'center'>
<widget name = 'Title'
width = '320'
height = 'Globals.Line.Height'
@@ -1666,7 +1663,7 @@
</dialog>
<dialog name = 'LoomTownsDifficultyDialog' overlays = 'screen_center'>
- <layout type = 'vertical' padding = '8, 8, 8, 8' center = 'true'>
+ <layout type = 'vertical' padding = '8, 8, 8, 8' align = 'center'>
<widget name = 'Description1'
width = '320'
height = 'Globals.Line.Height'
@@ -1687,7 +1684,7 @@
</dialog>
<dialog name = 'MassAdd' overlays = 'screen_center' shading = 'dim'>
- <layout type = 'vertical' padding = '8, 8, 32, 8' center = 'true'>
+ <layout type = 'vertical' padding = '8, 8, 32, 8' align = 'center'>
<widget name = 'DirProgressText'
width = '480'
height = 'Globals.Line.Height'
@@ -1712,8 +1709,8 @@
</dialog>
<dialog name = 'KeyMapper' overlays = 'screen_center' shading = 'dim'>
- <layout type = 'vertical' padding = '8, 8, 32, 8' spacing = '10' center = 'true'>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'vertical' padding = '8, 8, 32, 8' spacing = '10' align = 'center'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'PopupDesc'
type = 'OptionsLabel'
/>
@@ -1733,7 +1730,7 @@
</layout>
</dialog>
<dialog name = 'Predictive' overlays = 'screen_center'>
- <layout type = 'vertical' padding = '5, 5, 5, 5' center = 'true'>
+ <layout type = 'vertical' padding = '5, 5, 5, 5' align = 'center'>
<widget name = 'Headline'
height = 'Globals.Line.Height'
width = '210'
diff --git a/gui/themes/scummremastered/remastered_layout_lowres.stx b/gui/themes/scummremastered/remastered_layout_lowres.stx
index ef0a92d3dc..fa81408d82 100644
--- a/gui/themes/scummremastered/remastered_layout_lowres.stx
+++ b/gui/themes/scummremastered/remastered_layout_lowres.stx
@@ -121,7 +121,7 @@
</globals>
<dialog name = 'Launcher' overlays = 'screen'>
- <layout type = 'vertical' center = 'true' padding = '4, 4, 2, 2' spacing = '2'>
+ <layout type = 'vertical' align = 'center' padding = '4, 4, 2, 2' spacing = '2'>
<widget name = 'Version'
height = 'Globals.Line.Height'
textalign = 'center'
@@ -266,7 +266,7 @@
type = 'SmallLabel'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'grJoystickDeadzoneDesc'
type = 'OptionsLabel'
/>
@@ -287,7 +287,7 @@
</dialog>
<dialog name = 'GlobalOptions_Graphics_Container' overlays = 'GlobalOptions_Graphics.Container'>
<layout type = 'vertical' padding = '16, 16, 16, 16' spacing = '8'>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' align = 'center'>
<widget name = 'grModePopupDesc'
type = 'OptionsLabel'
/>
@@ -295,7 +295,7 @@
type = 'PopUp'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' align = 'center'>
<widget name = 'grRenderPopupDesc'
type = 'OptionsLabel'
/>
@@ -303,7 +303,7 @@
type = 'PopUp'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' align = 'center'>
<widget name = 'grStretchModePopupDesc'
type = 'OptionsLabel'
/>
@@ -325,7 +325,7 @@
<dialog name = 'GlobalOptions_Shader' overlays = 'Dialog.GlobalOptions.TabWidget'>
<layout type = 'vertical' padding = '16, 16, 16, 16' spacing = '8'>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'grShaderPopUpDesc'
type = 'OptionsLabel'
/>
@@ -338,7 +338,7 @@
<dialog name = 'GlobalOptions_Audio' overlays = 'Dialog.GlobalOptions.TabWidget'>
<layout type = 'vertical' padding = '16, 16, 16, 16' spacing = '8'>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' align = 'center'>
<widget name = 'auMidiPopupDesc'
type = 'OptionsLabel'
/>
@@ -346,7 +346,7 @@
type = 'PopUp'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' align = 'center'>
<widget name = 'auOPLPopupDesc'
type = 'OptionsLabel'
/>
@@ -354,7 +354,7 @@
type = 'PopUp'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '3' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '3' align = 'center'>
<widget name = 'subToggleDesc'
type = 'OptionsLabel'
/>
@@ -368,7 +368,7 @@
type = 'Radiobutton'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' align = 'center'>
<widget name = 'subSubtitleSpeedDesc'
type = 'OptionsLabel'
/>
@@ -417,7 +417,7 @@
type = 'SmallLabel'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '8' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '8' align = 'center'>
<space size = '105' />
<widget name = 'vcMuteCheckbox'
type = 'Checkbox'
@@ -428,7 +428,7 @@
<dialog name = 'GlobalOptions_MIDI' overlays = 'Dialog.GlobalOptions.TabWidget'>
<layout type = 'vertical' padding = '16, 16, 16, 16' spacing = '7'>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' align = 'center'>
<widget name = 'auPrefGmPopupDesc'
type = 'OptionsLabel'
/>
@@ -436,7 +436,7 @@
type = 'PopUp'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '16' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '16' align = 'center'>
<widget name = 'mcFontButton'
type = 'Button'
/>
@@ -451,7 +451,7 @@
<widget name = 'mcMixedCheckbox'
type = 'Checkbox'
/>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' align = 'center'>
<widget name = 'mcMidiGainText'
type = 'OptionsLabel'
/>
@@ -472,7 +472,7 @@
<dialog name = 'GlobalOptions_MT32' overlays = 'Dialog.GlobalOptions.TabWidget'>
<layout type = 'vertical' padding = '16, 16, 16, 16' spacing = '8'>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' align = 'center'>
<widget name = 'auPrefMt32PopupDesc'
type = 'OptionsLabel'
/>
@@ -491,7 +491,7 @@
<dialog name = 'GlobalOptions_Paths' overlays = 'Dialog.GlobalOptions.TabWidget'>
<layout type = 'vertical' padding = '16, 16, 16, 16' spacing = '8'>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '16' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '16' align = 'center'>
<widget name = 'SaveButton'
type = 'Button'
/>
@@ -503,7 +503,7 @@
width = 'Globals.Line.Height'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '16' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '16' align = 'center'>
<widget name = 'ThemeButton'
type = 'Button'
/>
@@ -515,7 +515,7 @@
width = 'Globals.Line.Height'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '16' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '16' align = 'center'>
<widget name = 'ExtraButton'
type = 'Button'
/>
@@ -527,7 +527,7 @@
width = 'Globals.Line.Height'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '16' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '16' align = 'center'>
<widget name = 'PluginsButton'
type = 'Button'
/>
@@ -540,7 +540,7 @@
<dialog name = 'GlobalOptions_Misc' overlays = 'Dialog.GlobalOptions.TabWidget'>
<layout type = 'vertical' padding = '16, 16, 16, 16' spacing = '8'>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '16' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '16' align = 'center'>
<widget name = 'ThemeButton'
type = 'Button'
/>
@@ -548,7 +548,7 @@
height = 'Globals.Line.Height'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' align = 'center'>
<widget name = 'RendererPopupDesc'
width = '80'
height = 'Globals.Line.Height'
@@ -558,7 +558,7 @@
type = 'PopUp'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' align = 'center'>
<widget name = 'AutosavePeriodPopupDesc'
width = '80'
height = 'Globals.Line.Height'
@@ -568,7 +568,7 @@
type = 'PopUp'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' align = 'center'>
<widget name = 'GuiLanguagePopupDesc'
width = '80'
height = 'Globals.Line.Height'
@@ -578,17 +578,17 @@
type = 'PopUp'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' align = 'center'>
<widget name = 'GuiLanguageUseGameLanguage'
type = 'Checkbox'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' align = 'center'>
<widget name = 'UseSystemDialogs'
type = 'Checkbox'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' align = 'center'>
<widget name = 'UpdatesPopupDesc'
width = '80'
height = 'Globals.Line.Height'
@@ -629,7 +629,7 @@
/>
</layout>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' align = 'center'>
<layout type = 'vertical' padding = '0, 0, 3, 0' spacing = '4'>
<widget name = 'StorageDisabledHint'
height = 'Globals.Line.Height'
@@ -639,7 +639,7 @@
/>
</layout>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' align = 'center'>
<layout type = 'vertical' padding = '0, 0, 3, 0' spacing = '1'>
<widget name = 'StorageUsernameDesc'
type = 'CloudTabLabel'
@@ -657,7 +657,7 @@
/>
</layout>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' align = 'center'>
<layout type = 'vertical' padding = '0, 0, 3, 0' spacing = '1'>
<widget name = 'StorageLastSyncDesc'
type = 'CloudTabLabel'
@@ -672,12 +672,12 @@
/>
</layout>
</layout>
- <layout type = 'horizontal' padding = '0, 0, -3, 0' spacing = '6' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, -3, 0' spacing = '6' align = 'center'>
<widget name = 'StorageSyncHint'
height = 'Globals.Line.Height'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' align = 'center'>
<layout type = 'vertical' padding = '0, 0, 3, 0' spacing = '4'>
<widget name = 'StorageDownloadHint'
height = 'Globals.Line.Height'
@@ -687,7 +687,7 @@
/>
</layout>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' align = 'center'>
<layout type = 'vertical' padding = '0, 0, 3, 0' spacing = '4'>
<widget name = 'StorageDisconnectHint'
height = 'Globals.Line.Height'
@@ -704,7 +704,7 @@
height = 'Globals.Line.Height'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, -3, 0' spacing = '6' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, -3, 0' spacing = '6' align = 'center'>
<layout type = 'vertical' padding = '0, 0, 1, 0' spacing = '2'>
<widget name = 'StorageWizardOpenLinkHint'
width = '90'
@@ -718,12 +718,12 @@
/>
</layout>
</layout>
- <layout type = 'horizontal' padding = '0, 0, -2, 0' spacing = '6' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, -2, 0' spacing = '6' align = 'center'>
<widget name = 'StorageWizardCodeHint'
height = 'Globals.Line.Height'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' align = 'center'>
<layout type = 'vertical' padding = '0, 0, -2, 0' spacing = '2'>
<widget name = 'StorageWizardCodeBox'
width = '72'
@@ -736,7 +736,7 @@
/>
</layout>
</layout>
- <layout type = 'horizontal' padding = '0, 0, -2, 0' spacing = '6' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, -2, 0' spacing = '6' align = 'center'>
<widget name = 'StorageWizardConnectButton'
type = 'Button'
/>
@@ -749,7 +749,7 @@
<dialog name = 'GlobalOptions_Network' overlays = 'Dialog.GlobalOptions.TabWidget'>
<layout type = 'vertical' padding = '16, 16, 16, 16' spacing = '8'>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' align = 'center'>
<widget name = 'RunServerButton'
type = 'Button'
/>
@@ -757,7 +757,7 @@
height = 'Globals.Line.Height'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '16' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '16' align = 'center'>
<widget name = 'RootPathButton'
type = 'Button'
/>
@@ -769,7 +769,7 @@
width = 'Globals.Line.Height'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' align = 'center'>
<widget name = 'ServerPortDesc'
width = '80'
height = 'Globals.Line.Height'
@@ -784,7 +784,7 @@
width = 'Globals.Line.Height'
/>
</layout>
- <layout type = 'vertical' padding = '0, 0, 0, 0' spacing = '2' center = 'true'>
+ <layout type = 'vertical' padding = '0, 0, 0, 0' spacing = '2' align = 'center'>
<widget name = 'FeatureDescriptionLine1'
height = 'Globals.Line.Height'
/>
@@ -856,7 +856,7 @@
<widget name = 'ReturnLine2'
height = 'Globals.Line.Height'
/>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '4' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '4' align = 'center'>
<widget name = 'CodeBox1'
width = '60'
height = '16'
@@ -874,7 +874,7 @@
height = '16'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '4' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '4' align = 'center'>
<widget name = 'CodeBox5'
width = '60'
height = '16'
@@ -895,7 +895,7 @@
<widget name = 'MessageLine'
height = 'Globals.Line.Height'
/>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '4' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '4' align = 'center'>
<widget name = 'OpenUrlButton'
type = 'Button'
/>
@@ -903,7 +903,7 @@
type = 'Button'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '4' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '4' align = 'center'>
<widget name = 'CancelButton'
type = 'Button'
/>
@@ -930,7 +930,7 @@
</dialog>
<dialog name='KeysDialog' overlays='Dialog.GlobalOptions' shading='dim'>
- <layout type='vertical' padding='8,8,8,8' center='true'>
+ <layout type='vertical' padding='8,8,8,8' align = 'center'>
<widget name='Action'
height='Globals.Line.Height'
/>
@@ -1021,7 +1021,7 @@
<dialog name = 'GameOptions_Game' overlays = 'Dialog.GameOptions.TabWidget' shading = 'dim'>
<layout type = 'vertical' padding = '8, 8, 8, 8'>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' align = 'center'>
<widget name = 'Id'
width = '35'
height = 'Globals.Line.Height'
@@ -1031,7 +1031,7 @@
type = 'PopUp'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' align = 'center'>
<widget name = 'Name'
width = '35'
height = 'Globals.Line.Height'
@@ -1042,7 +1042,7 @@
/>
</layout>
<space size = '8'/>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' align = 'center'>
<widget name = 'LangPopupDesc'
width = '60'
height = 'Globals.Line.Height'
@@ -1052,7 +1052,7 @@
type = 'PopUp'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' align = 'center'>
<widget name = 'PlatformPopupDesc'
width = '60'
height = 'Globals.Line.Height'
@@ -1067,7 +1067,7 @@
<dialog name = 'GameOptions_Paths' overlays = 'Dialog.GameOptions.TabWidget' shading = 'dim'>
<layout type = 'vertical' padding = '8, 8, 8, 8'>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '16' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '16' align = 'center'>
<widget name = 'Savepath'
type = 'Button'
/>
@@ -1079,7 +1079,7 @@
width = 'Globals.Line.Height'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '16' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '16' align = 'center'>
<widget name = 'Extrapath'
type = 'Button'
/>
@@ -1091,7 +1091,7 @@
width = 'Globals.Line.Height'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '16' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '16' align = 'center'>
<widget name = 'Gamepath'
type = 'Button'
/>
@@ -1129,7 +1129,7 @@
</dialog>
<dialog name = 'GlobalMenu' overlays = 'screen_center'>
- <layout type = 'vertical' padding = '4, 4, 4, 4' center = 'true' spacing='2'>
+ <layout type = 'vertical' padding = '4, 4, 4, 4' align = 'center' spacing='2'>
<widget name = 'Title'
width = '160'
height = 'Globals.Line.Height'
@@ -1178,7 +1178,7 @@
<dialog name = 'GlobalConfig' overlays = 'screen_center'>
<layout type = 'vertical' padding = '8, 8, 8, 8'>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' align = 'center'>
<widget name = 'vcMusicText'
type = 'OptionsLabel'
/>
@@ -1189,7 +1189,7 @@
type = 'SmallLabel'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' align = 'center'>
<widget name = 'vcSfxText'
type = 'OptionsLabel'
/>
@@ -1200,7 +1200,7 @@
type = 'SmallLabel'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' align = 'center'>
<widget name = 'vcSpeechText'
type = 'OptionsLabel'
/>
@@ -1211,7 +1211,7 @@
type = 'SmallLabel'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' align = 'center'>
<space size = '100' />
<widget name = 'vcMuteCheckbox'
type = 'Checkbox'
@@ -1219,11 +1219,11 @@
/>
</layout>
<space size = '4' />
- <layout type = 'vertical' padding = '0, 0, 0, 0' spacing = '6' center = 'true'>
+ <layout type = 'vertical' padding = '0, 0, 0, 0' spacing = '6' align = 'center'>
<widget name = 'subToggleDesc'
type = 'OptionsLabel'
/>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' align = 'center'>
<widget name = 'subToggleSpeechOnly'
type = 'Radiobutton'
width = '90'
@@ -1239,7 +1239,7 @@
</layout>
</layout>
<space size = '4' />
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '6' align = 'center'>
<widget name = 'subSubtitleSpeedDesc'
type = 'OptionsLabel'
/>
@@ -1289,7 +1289,7 @@
<widget name = 'EnableTabCheckbox'
type = 'Checkbox'
/>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'VoiceCountText'
type = 'OptionsLabel'
/>
@@ -1301,7 +1301,7 @@
height = 'Globals.Line.Height'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'LevelText'
type = 'OptionsLabel'
/>
@@ -1313,7 +1313,7 @@
height = 'Globals.Line.Height'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'SpeedText'
type = 'OptionsLabel'
/>
@@ -1325,7 +1325,7 @@
height = 'Globals.Line.Height'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'DepthText'
type = 'OptionsLabel'
/>
@@ -1337,7 +1337,7 @@
height = 'Globals.Line.Height'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'WaveFormTypeText'
type = 'OptionsLabel'
/>
@@ -1353,7 +1353,7 @@
<widget name = 'EnableTabCheckbox'
type = 'Checkbox'
/>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'RoomSizeText'
type = 'OptionsLabel'
/>
@@ -1365,7 +1365,7 @@
height = 'Globals.Line.Height'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'DampingText'
type = 'OptionsLabel'
/>
@@ -1377,7 +1377,7 @@
height = 'Globals.Line.Height'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'WidthText'
type = 'OptionsLabel'
/>
@@ -1389,7 +1389,7 @@
height = 'Globals.Line.Height'
/>
</layout>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'LevelText'
type = 'OptionsLabel'
/>
@@ -1406,7 +1406,7 @@
<dialog name = 'FluidSynthSettings_Misc' overlays = 'Dialog.FluidSynthSettings.TabWidget'>
<layout type = 'vertical' padding = '8, 8, 8, 8' spacing = '6'>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'InterpolationText'
type = 'OptionsLabel'
/>
@@ -1418,7 +1418,7 @@
</dialog>
<dialog name = 'SaveLoadChooser' overlays = 'screen' inset = '8' shading = 'dim'>
- <layout type = 'vertical' padding = '8, 8, 8, 8' center = 'true'>
+ <layout type = 'vertical' padding = '8, 8, 8, 8' align = 'center'>
<widget name = 'Title' height = 'Globals.Line.Height'/>
<widget name = 'List' />
<layout type = 'horizontal' padding = '0, 0, 16, 0'>
@@ -1446,7 +1446,7 @@
</dialog>
<dialog name = 'SaveLoadCloudSyncProgress' overlays = 'screen_center' inset = '8' shading = 'dim'>
- <layout type = 'vertical' padding = '8, 8, 8, 8' center = 'true'>
+ <layout type = 'vertical' padding = '8, 8, 8, 8' align = 'center'>
<widget name = 'TitleText'
width = '240'
height = 'Globals.Line.Height'
@@ -1464,7 +1464,7 @@
textalign = 'center'
/>
<space size = '1'/>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' center = 'true' spacing = '10'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' align = 'center' spacing = '10'>
<widget name = 'Cancel'
width = '100'
height = 'Globals.Button.Height'
@@ -1519,7 +1519,7 @@
</dialog>
<dialog name = 'RecorderDialog' overlays = 'screen' inset = '8' shading = 'dim'>
- <layout type = 'vertical' padding = '8, 8, 8, 4' center = 'true'>
+ <layout type = 'vertical' padding = '8, 8, 8, 4' align = 'center'>
<widget name = 'Title'
height = 'Globals.Line.Height'
/>
@@ -1549,7 +1549,7 @@
</dialog>
<dialog name = 'OnScreenDialog' overlays = 'screen_center'>
- <layout type = 'horizontal' spacing = '5' padding = '3, 2, 3, 2' center = 'true'>
+ <layout type = 'horizontal' spacing = '5' padding = '3, 2, 3, 2' align = 'center'>
<widget name = 'StopButton'
width = '16'
height = '16'
@@ -1574,7 +1574,7 @@
</dialog>
<dialog name = 'EditRecordDialog' overlays = 'screen_center'>
- <layout type = 'vertical' padding = '8, 8, 8, 8' center = 'true'>
+ <layout type = 'vertical' padding = '8, 8, 8, 8' align = 'center'>
<widget name = 'Title'
height = 'Globals.Line.Height'
/>
@@ -1638,7 +1638,7 @@
</dialog>
<dialog name = 'LoomTownsDifficultyDialog' overlays = 'screen_center'>
- <layout type = 'vertical' padding = '8, 8, 8, 8' center = 'true'>
+ <layout type = 'vertical' padding = '8, 8, 8, 8' align = 'center'>
<widget name = 'Description1'
width = '280'
height = 'Globals.Line.Height'
@@ -1659,7 +1659,7 @@
</dialog>
<dialog name = 'MassAdd' overlays = 'screen_center' shading = 'dim'>
- <layout type = 'vertical' padding = '4, 4, 16, 4' center = 'true'>
+ <layout type = 'vertical' padding = '4, 4, 16, 4' align = 'center'>
<widget name = 'DirProgressText'
width = '280'
height = 'Globals.Line.Height'
@@ -1683,8 +1683,8 @@
</layout>
</dialog>
<dialog name = 'KeyMapper' overlays = 'screen_center' shading = 'dim'>
- <layout type = 'vertical' padding = '8, 8, 8, 8' spacing = '10' center = 'true'>
- <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' center = 'true'>
+ <layout type = 'vertical' padding = '8, 8, 8, 8' spacing = '10' align = 'center'>
+ <layout type = 'horizontal' padding = '0, 0, 0, 0' spacing = '10' align = 'center'>
<widget name = 'PopupDesc'
type = 'OptionsLabel'
/>
@@ -1704,7 +1704,7 @@
</layout>
</dialog>
<dialog name = 'Predictive' overlays = 'screen_center'>
- <layout type = 'vertical' center = 'true'>
+ <layout type = 'vertical' align = 'center'>
<widget name = 'Headline'
height = 'Globals.Line.Height'
width = '150'