diff options
author | Fedja Beader <fedja@protonmail.ch> | 2024-09-26 22:38:02 +0200 |
---|---|---|
committer | Fedja Beader <fedja@protonmail.ch> | 2024-09-26 22:40:59 +0200 |
commit | 8dfdc87142f4168c512e01925a3091af0ec22483 (patch) | |
tree | 7f6ec3a7caeb7029a99f6f323543073a77fe2ce2 | |
parent | f9e62010fb73efb22476c64fe13947b0437b7633 (diff) | |
download | manaplus-item_shortcuts_window_sticky_button.tar.gz manaplus-item_shortcuts_window_sticky_button.tar.bz2 manaplus-item_shortcuts_window_sticky_button.tar.xz manaplus-item_shortcuts_window_sticky_button.zip |
Add sticky lock and close button to item shortcuts windowitem_shortcuts_window_sticky_button
Closes #34
Note: not sure if it's just me, but there's an oddity where I cannot
resize this window even if not sticky. But it's difficult to repro or
figure out which sequence of actions unlocks it. YMMV.
-rw-r--r-- | src/gui/windows/shortcutwindow.cpp | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/gui/windows/shortcutwindow.cpp b/src/gui/windows/shortcutwindow.cpp index d701cd927..6a1846e50 100644 --- a/src/gui/windows/shortcutwindow.cpp +++ b/src/gui/windows/shortcutwindow.cpp @@ -65,8 +65,10 @@ ShortcutWindow::ShortcutWindow(const std::string &restrict title, setShowTitle(false); setResizable(true); + setStickyButtonLock(true); setDefaultVisible(false); setSaveVisible(true); + setCloseButton(true); setAllowClose(true); mDragOffsetX = 0; @@ -123,10 +125,13 @@ ShortcutWindow::ShortcutWindow(const std::string &restrict title, { setWindowName(title); setTitleBarHeight(getPadding() + getTitlePadding()); + setShowTitle(false); setResizable(true); + setStickyButtonLock(true); setDefaultVisible(false); setSaveVisible(true); + setCloseButton(true); setAllowClose(true); mDragOffsetX = 0; |