diff options
author | Joshua Langley <joshlangley[at]optusnet.com.au> | 2007-08-21 15:11:19 +0000 |
---|---|---|
committer | Joshua Langley <joshlangley[at]optusnet.com.au> | 2007-08-21 15:11:19 +0000 |
commit | 0f8e80bcfe92ca39803f0443cf4b30e3f9171eb9 (patch) | |
tree | a07d923f09e8c9aa4a478e2bd572ab94edf09ae4 /src/gui/setup_keyboard.cpp | |
parent | 148b62c05337eaaaf3a1ead212b3792122812cee (diff) | |
download | mana-0f8e80bcfe92ca39803f0443cf4b30e3f9171eb9.tar.gz mana-0f8e80bcfe92ca39803f0443cf4b30e3f9171eb9.tar.bz2 mana-0f8e80bcfe92ca39803f0443cf4b30e3f9171eb9.tar.xz mana-0f8e80bcfe92ca39803f0443cf4b30e3f9171eb9.zip |
mantis id=118 - Added Item Shortcut Bar.
Diffstat (limited to 'src/gui/setup_keyboard.cpp')
-rw-r--r-- | src/gui/setup_keyboard.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/gui/setup_keyboard.cpp b/src/gui/setup_keyboard.cpp index 3c8c8163..e88080b5 100644 --- a/src/gui/setup_keyboard.cpp +++ b/src/gui/setup_keyboard.cpp @@ -78,16 +78,16 @@ Setup_Keyboard::Setup_Keyboard(): refreshKeys(); - mKeyList->setDimension(gcn::Rectangle(0, 0, 180, 140)); + mKeyList->setDimension(gcn::Rectangle(0, 0, 185, 140)); mKeyList->addActionListener(this); mKeyList->setSelected(-1); ScrollArea *scrollArea = new ScrollArea(mKeyList); - scrollArea->setDimension(gcn::Rectangle(10, 10, 180, 140)); + scrollArea->setDimension(gcn::Rectangle(10, 10, 200, 140)); add(scrollArea); mAssignKeyButton = new Button("Assign", "assign", this); - mAssignKeyButton->setPosition(145, 155); + mAssignKeyButton->setPosition(165, 155); mAssignKeyButton->addActionListener(this); mAssignKeyButton->setEnabled(false); add(mAssignKeyButton); |