From 404a4d9363150e22a59ab1da1661e9e25a2cfcd2 Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Thu, 18 Sep 2003 11:32:09 +0000 Subject: [PATCH] tool windows shouldn't appear on the taskbar (patch 808350) git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@23660 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775 --- src/msw/toplevel.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/msw/toplevel.cpp b/src/msw/toplevel.cpp index 76363e5dc7..e978a597fb 100644 --- a/src/msw/toplevel.cpp +++ b/src/msw/toplevel.cpp @@ -220,6 +220,9 @@ WXDWORD wxTopLevelWindowMSW::MSWGetStyle(long style, WXDWORD *exflags) const { // create the palette-like window *exflags |= WS_EX_TOOLWINDOW; + + // tool windows shouldn't appear on the taskbar (as documented) + style |= wxFRAME_NO_TASKBAR; } // We have to solve 2 different problems here: -- 2.45.2