diff options
author | Paul Gilbert | 2008-01-09 02:32:18 +0000 |
---|---|---|
committer | Paul Gilbert | 2008-01-09 02:32:18 +0000 |
commit | 241c337dc331a84340deb0c7e48b87f00fd7b582 (patch) | |
tree | 35dd7b2521a84d4a51e88a55b95358f4f9e4e461 /engines/lure | |
parent | e21fd496f837dc13a4c232e931767b14fef43940 (diff) | |
download | scummvm-rg350-241c337dc331a84340deb0c7e48b87f00fd7b582.tar.gz scummvm-rg350-241c337dc331a84340deb0c7e48b87f00fd7b582.tar.bz2 scummvm-rg350-241c337dc331a84340deb0c7e48b87f00fd7b582.zip |
Fixed popup menu height so bottom action doesn't partially overlap the bottom border
svn-id: r30346
Diffstat (limited to 'engines/lure')
-rw-r--r-- | engines/lure/menu.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/lure/menu.cpp b/engines/lure/menu.cpp index 476975a8f1..40eae20693 100644 --- a/engines/lure/menu.cpp +++ b/engines/lure/menu.cpp @@ -500,9 +500,9 @@ uint16 PopupMenu::Show(int numEntries, const char *actions[]) { // Create the dialog surface Common::Point size; - Surface::getDialogBounds(size, numCols, numLines); + Surface::getDialogBounds(size, numCols, numLines, false); Surface *s = new Surface(size.x, size.y); - s->createDialog(); + s->createDialog(true); int selectedIndex = 0; bool refreshFlag = true; |