Commit 5c3f6bcd authored by Frank Richter's avatar Frank Richter Committed by Alexandre Julliard

Enabled "tab" dialog texture for property sheet pages.

parent 7bc3a38b
...@@ -6,7 +6,7 @@ VPATH = @srcdir@ ...@@ -6,7 +6,7 @@ VPATH = @srcdir@
MODULE = comctl32.dll MODULE = comctl32.dll
IMPORTLIB = libcomctl32.$(IMPLIBEXT) IMPORTLIB = libcomctl32.$(IMPLIBEXT)
IMPORTS = user32 gdi32 advapi32 kernel32 IMPORTS = user32 gdi32 advapi32 kernel32
DELAYIMPORTS = winmm DELAYIMPORTS = winmm uxtheme
EXTRALIBS = $(LIBUNICODE) EXTRALIBS = $(LIBUNICODE)
C_SRCS = \ C_SRCS = \
......
...@@ -66,6 +66,7 @@ ...@@ -66,6 +66,7 @@
#include "commctrl.h" #include "commctrl.h"
#include "prsht.h" #include "prsht.h"
#include "comctl32.h" #include "comctl32.h"
#include "uxtheme.h"
#include "wine/debug.h" #include "wine/debug.h"
#include "wine/unicode.h" #include "wine/unicode.h"
...@@ -1541,6 +1542,8 @@ static BOOL PROPSHEET_CreatePage(HWND hwndParent, ...@@ -1541,6 +1542,8 @@ static BOOL PROPSHEET_CreatePage(HWND hwndParent,
SetWindowSubclass(hwndPage, PROPSHEET_WizardSubclassProc, 1, SetWindowSubclass(hwndPage, PROPSHEET_WizardSubclassProc, 1,
(DWORD_PTR)ppshpage); (DWORD_PTR)ppshpage);
} }
if (!(psInfo->ppshheader.dwFlags & INTRNL_ANY_WIZARD))
EnableThemeDialogTexture (hwndPage, ETDT_ENABLETAB);
return TRUE; return TRUE;
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment