diff options
author | Andrei Karas <akaras@inbox.ru> | 2012-01-15 02:25:46 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2012-01-15 02:25:46 +0300 |
commit | d33727beb44c97959a41caeb215f30162570bf48 (patch) | |
tree | d498059371f77901c4776b80554a31639b3e8d75 | |
parent | a31b6680efbbea7874cbdbaff9fa2d4b9688264b (diff) | |
download | plus-d33727beb44c97959a41caeb215f30162570bf48.tar.gz plus-d33727beb44c97959a41caeb215f30162570bf48.tar.bz2 plus-d33727beb44c97959a41caeb215f30162570bf48.tar.xz plus-d33727beb44c97959a41caeb215f30162570bf48.zip |
Fix default item shortcuts window size.
-rw-r--r-- | src/game.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/game.cpp b/src/game.cpp index 81e93034f..14a988700 100644 --- a/src/game.cpp +++ b/src/game.cpp @@ -216,7 +216,9 @@ static void createGuiWindows() minimap = new Minimap; helpWindow = new HelpWindow; debugWindow = new DebugWindow; - itemShortcutWindow = new ShortcutWindow("ItemShortcut", "items.xml"); + itemShortcutWindow = new ShortcutWindow( + "ItemShortcut", "items.xml", 83, 460); + for (int f = 0; f < SHORTCUT_TABS; f ++) { itemShortcutWindow->addTab(toString(f + 1), |