aboutsummaryrefslogtreecommitdiff
path: root/backends/wince/CEKeysDialog.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'backends/wince/CEKeysDialog.cpp')
-rw-r--r--backends/wince/CEKeysDialog.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/backends/wince/CEKeysDialog.cpp b/backends/wince/CEKeysDialog.cpp
index 54745a8729..737a33577c 100644
--- a/backends/wince/CEKeysDialog.cpp
+++ b/backends/wince/CEKeysDialog.cpp
@@ -42,12 +42,9 @@ enum {
CEKeysDialog::CEKeysDialog(const Common::String &title)
: GUI::Dialog(30, 20, 260, 160) {
- addButton(this, 160, 20, "Map", kMapCmd, 'M', GUI::kDefaultWidgetSize); // Map
- addButton(this, 160, 40, "OK", kOKCmd, 'O', GUI::kDefaultWidgetSize); // OK
- addButton(this, 160, 60, "Cancel", kCloseCmd, 'C', GUI::kDefaultWidgetSize); // Cancel
-
- _actionsList = new ListWidget(this, 10, 20, 140, 90);
- _actionsList->setNumberingMode(kListNumberingZero);
+ addButton(this, 160, 20, "Map", kMapCmd, 'M'); // Map
+ addButton(this, 160, 40, "OK", kOKCmd, 'O'); // OK
+ addButton(this, 160, 60, "Cancel", kCloseCmd, 'C'); // Cancel
_actionTitle = new StaticTextWidget(this, 10, 120, 240, 16, title, kTextAlignCenter);
_keyMapping = new StaticTextWidget(this, 10, 140, 240, 16, "", kTextAlignCenter);
@@ -55,6 +52,9 @@ CEKeysDialog::CEKeysDialog(const Common::String &title)
_actionTitle->setFlags(WIDGET_CLEARBG);
_keyMapping->setFlags(WIDGET_CLEARBG);
+ _actionsList = new ListWidget(this, "Actions List");
+ _actionsList->setNumberingMode(kListNumberingZero);
+
// Get actions names
Common::StringList l;