summaryrefslogtreecommitdiff
path: root/src/mir_app
diff options
context:
space:
mode:
authorGeorge Hazan <george.hazan@gmail.com>2023-10-16 20:26:59 +0300
committerGeorge Hazan <george.hazan@gmail.com>2023-10-16 20:26:59 +0300
commitfc15d7ebc2c5dbf47bdd724e599eb393b28df436 (patch)
tree68fcaa7fd3171417f4fa1901d5ea1512478dd63a /src/mir_app
parent8c965320ef8bbb372c00c6d54d4b1612ec1eec4b (diff)
fix for another visual glitch in options
Diffstat (limited to 'src/mir_app')
-rw-r--r--src/mir_app/src/options.cpp2
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)