diff options
author | Ira Rice <irarice@gmail.com> | 2009-01-09 15:24:10 -0700 |
---|---|---|
committer | Ira Rice <irarice@gmail.com> | 2009-01-09 15:24:10 -0700 |
commit | a4bb147cc8321a210b5fe6a6ce776679369d76e8 (patch) | |
tree | 3c5be8752639e04a1034b6ec9b1387c352f0a713 /src/gui/shortcutwindow.cpp | |
parent | dbd70f58177e65266d1dff00f4ccf5bca7acbc04 (diff) | |
download | mana-a4bb147cc8321a210b5fe6a6ce776679369d76e8.tar.gz mana-a4bb147cc8321a210b5fe6a6ce776679369d76e8.tar.bz2 mana-a4bb147cc8321a210b5fe6a6ce776679369d76e8.tar.xz mana-a4bb147cc8321a210b5fe6a6ce776679369d76e8.zip |
Fixed the default size for shortcut windows, as well as added both of
the new shortcut windows to the reset shortcut window.
Signed-off-by: Ira Rice <irarice@gmail.com>
Diffstat (limited to 'src/gui/shortcutwindow.cpp')
-rw-r--r-- | src/gui/shortcutwindow.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/src/gui/shortcutwindow.cpp b/src/gui/shortcutwindow.cpp index d2aa2c2c..eb9efa84 100644 --- a/src/gui/shortcutwindow.cpp +++ b/src/gui/shortcutwindow.cpp @@ -25,14 +25,13 @@ static const int SCROLL_PADDING = 0; -ShortcutWindow::ShortcutWindow(const char * title,ShortcutContainer *content) +ShortcutWindow::ShortcutWindow(const char *title, ShortcutContainer *content) { setWindowName(title); // no title presented, title bar is padding so window can be moved. gcn::Window::setTitleBarHeight(gcn::Window::getPadding()); setShowTitle(false); setResizable(true); - setDefaultSize(758, 174, 42, 426); mItems = content; @@ -42,6 +41,9 @@ ShortcutWindow::ShortcutWindow(const char * title,ShortcutContainer *content) setMaxWidth(mItems->getBoxWidth() * mItems->getMaxItems() + border); setMaxHeight(mItems->getBoxHeight() * mItems->getMaxItems() + border); + setDefaultSize(758, 174, mItems->getBoxWidth() + border, + (mItems->getBoxHeight() * mItems->getMaxItems()) + border); + mScrollArea = new ScrollArea(mItems); mScrollArea->setPosition(SCROLL_PADDING, SCROLL_PADDING); mScrollArea->setHorizontalScrollPolicy(gcn::ScrollArea::SHOW_NEVER); |