diff options
Diffstat (limited to 'src/gui/windows/shortcutwindow.cpp')
-rw-r--r-- | src/gui/windows/shortcutwindow.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gui/windows/shortcutwindow.cpp b/src/gui/windows/shortcutwindow.cpp index d84a01e05..85fb2e2ff 100644 --- a/src/gui/windows/shortcutwindow.cpp +++ b/src/gui/windows/shortcutwindow.cpp @@ -49,7 +49,7 @@ ShortcutWindow::ShortcutWindow(const std::string &restrict title, ShortcutContainer *restrict const content, const std::string &restrict skinFile, int width, int height) : - Window("Window", false, nullptr, skinFile), + Window("Window", Modal_false, nullptr, skinFile), mItems(content), mScrollArea(new ScrollArea(this, mItems, false)), mTabs(nullptr), @@ -105,7 +105,7 @@ ShortcutWindow::ShortcutWindow(const std::string &restrict title, ShortcutWindow::ShortcutWindow(const std::string &restrict title, const std::string &restrict skinFile, const int width, const int height) : - Window("Window", false, nullptr, skinFile), + Window("Window", Modal_false, nullptr, skinFile), mItems(nullptr), mScrollArea(nullptr), mTabs(new TabbedArea(this)), |