diff options
| author | Admiral H. Curtiss <pikachu025@gmail.com> | 2023-07-31 00:42:15 +0200 |
|---|---|---|
| committer | Admiral H. Curtiss <pikachu025@gmail.com> | 2023-08-12 16:54:54 +0200 |
| commit | e2fb8fab2f695ee53ab0aa7a5ff2fe752c719ce8 (patch) | |
| tree | 7bf7daaedddc11b41e704c51792954845ebad924 /Source/Core/DolphinQt/ResourcePackManager.cpp | |
| parent | e8d23af0f2799337af0b0c69a34aa717bf88766e (diff) | |
DolphinQt: Set window decorations for all top-level QWidgets.
Diffstat (limited to 'Source/Core/DolphinQt/ResourcePackManager.cpp')
| -rw-r--r-- | Source/Core/DolphinQt/ResourcePackManager.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/Core/DolphinQt/ResourcePackManager.cpp b/Source/Core/DolphinQt/ResourcePackManager.cpp index ad464a76ea..eac48cd6c5 100644 --- a/Source/Core/DolphinQt/ResourcePackManager.cpp +++ b/Source/Core/DolphinQt/ResourcePackManager.cpp @@ -14,6 +14,7 @@ #include "Common/FileUtil.h" #include "DolphinQt/QtUtils/ModalMessageBox.h" #include "DolphinQt/QtUtils/NonDefaultQPushButton.h" +#include "DolphinQt/QtUtils/SetWindowDecorations.h" #include "UICommon/ResourcePack/Manager.h" ResourcePackManager::ResourcePackManager(QWidget* widget) : QDialog(widget) @@ -241,6 +242,7 @@ void ResourcePackManager::Remove() box.setIcon(QMessageBox::Warning); box.setStandardButtons(QMessageBox::Yes | QMessageBox::Abort); + SetQWidgetWindowDecorations(&box); if (box.exec() != QMessageBox::Yes) return; |
