diff options
| author | Admiral H. Curtiss <pikachu025@gmail.com> | 2023-08-12 20:04:03 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-08-12 20:04:03 +0200 |
| commit | dfbc0e33d70a94124cd4a9176d9f544365a66bd2 (patch) | |
| tree | 7e8958b888a10785a44cff2972b27e7fc5e62622 /Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp | |
| parent | 44c90aa3fc7e9fe12a87b01a8dcde8e96dac9617 (diff) | |
| parent | 24012cfc7f396177732e9a8b7d849045a65a5512 (diff) | |
Merge pull request #12080 from AdmiralCurtiss/windark
Add custom dark theme for Windows.
Diffstat (limited to 'Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp')
| -rw-r--r-- | Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp b/Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp index 685c582f33..cb66245cb4 100644 --- a/Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp +++ b/Source/Core/DolphinQt/InfinityBase/InfinityBaseWindow.cpp @@ -26,6 +26,7 @@ #include "Core/System.h" #include "DolphinQt/QtUtils/DolphinFileDialog.h" +#include "DolphinQt/QtUtils/SetWindowDecorations.h" #include "DolphinQt/Settings.h" // Qt is not guaranteed to keep track of file paths using native file pickers, so we use this @@ -149,6 +150,7 @@ void InfinityBaseWindow::LoadFigure(u8 slot) void InfinityBaseWindow::CreateFigure(u8 slot) { CreateFigureDialog create_dlg(this, slot); + SetQWidgetWindowDecorations(&create_dlg); if (create_dlg.exec() == CreateFigureDialog::Accepted) { LoadFigurePath(slot, create_dlg.GetFilePath()); |
