Commit 6c74b935 authored by Erwan Tulou's avatar Erwan Tulou

skins2(Win32): remove an unneeded WS_EX_TOOLWINDOW option

This option prevents windows from being displayed in the alt-tab list.
This should fix trac #4343 for Vista and Win7  (to be tested)
parent 2f530241
...@@ -75,7 +75,7 @@ Win32Window::Win32Window( intf_thread_t *pIntf, GenericWindow &rWindow, ...@@ -75,7 +75,7 @@ Win32Window::Win32Window( intf_thread_t *pIntf, GenericWindow &rWindow,
{ {
// top-level window (owned by the root window) // top-level window (owned by the root window)
HWND hWnd_owner = pFactory->getParentWindow(); HWND hWnd_owner = pFactory->getParentWindow();
m_hWnd = CreateWindowEx( WS_EX_TOOLWINDOW, "SkinWindowClass", m_hWnd = CreateWindowEx( 0, "SkinWindowClass",
"default name", WS_POPUP | WS_CLIPCHILDREN, "default name", WS_POPUP | WS_CLIPCHILDREN,
0, 0, 0, 0, hWnd_owner, 0, hInst, NULL ); 0, 0, 0, 0, hWnd_owner, 0, hInst, NULL );
} }
......
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