[vlc-commits] commit: skins2(Win32): remove an unneeded WS_EX_TOOLWINDOW option ( Erwan Tulou )
git at videolan.org
git at videolan.org
Sun Nov 21 21:16:00 CET 2010
vlc/vlc-1.1 | branch: master | Erwan Tulou <erwan10 at videolan.org> | Fri Nov 19 00:47:26 2010 +0100| [6c437cbfd652d76e1335365e6ee447c51a659af8] | committer: 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)
(cherry picked from commit 6c74b935f99b9d46bb92b3ba01bfbaf4c7d52276)
> http://git.videolan.org/gitweb.cgi/vlc/vlc-1.1.git/?a=commit;h=6c437cbfd652d76e1335365e6ee447c51a659af8
---
modules/gui/skins2/win32/win32_window.cpp | 2 +-
1 files changed, 1 insertions(+), 1 deletions(-)
diff --git a/modules/gui/skins2/win32/win32_window.cpp b/modules/gui/skins2/win32/win32_window.cpp
index d71c74c..b3d707c 100644
--- a/modules/gui/skins2/win32/win32_window.cpp
+++ b/modules/gui/skins2/win32/win32_window.cpp
@@ -75,7 +75,7 @@ Win32Window::Win32Window( intf_thread_t *pIntf, GenericWindow &rWindow,
{
// top-level window (owned by the root window)
HWND hWnd_owner = pFactory->getParentWindow();
- m_hWnd = CreateWindowEx( WS_EX_TOOLWINDOW, "SkinWindowClass",
+ m_hWnd = CreateWindowEx( 0, "SkinWindowClass",
"default name", WS_POPUP | WS_CLIPCHILDREN,
0, 0, 0, 0, hWnd_owner, 0, hInst, NULL );
}
More information about the vlc-commits
mailing list