diff options
author | George Hazan <george.hazan@gmail.com> | 2023-10-16 20:26:59 +0300 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2023-10-16 20:26:59 +0300 |
commit | fc15d7ebc2c5dbf47bdd724e599eb393b28df436 (patch) | |
tree | 68fcaa7fd3171417f4fa1901d5ea1512478dd63a /src/mir_app | |
parent | 8c965320ef8bbb372c00c6d54d4b1612ec1eec4b (diff) |
fix for another visual glitch in options
Diffstat (limited to 'src/mir_app')
-rw-r--r-- | src/mir_app/src/options.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mir_app/src/options.cpp b/src/mir_app/src/options.cpp index 81c136a0ab..41c392b483 100644 --- a/src/mir_app/src/options.cpp +++ b/src/mir_app/src/options.cpp @@ -70,7 +70,7 @@ static BOOL CALLBACK BoldGroupTitlesEnumChildren(HWND hwnd, LPARAM lParam) static void ThemeDialogBackground(HWND hwnd, BOOL tabbed)
{
- EnableThemeDialogTexture(hwnd, (tabbed ? ETDT_ENABLE : ETDT_DISABLE) | ETDT_USETABTEXTURE);
+ EnableThemeDialogTexture(hwnd, ETDT_DISABLE | ETDT_USETABTEXTURE);
}
static wchar_t* GetPluginName(HINSTANCE hInstance, wchar_t *buffer, int size)
|