Version: 12.0 Date: 2023-01-22 Author: bgstack15 Message: Suppress taskbar entry for tooltip "window" --- a/wx+/tooltip.cpp +++ b/wx+/tooltip.cpp @@ -9,6 +9,7 @@ #include #include #include +#include #include #include "image_tools.h" #include "bitmap_button.h" @@ -28,7 +29,7 @@ class Tooltip::TooltipDlgGenerated : pub { public: TooltipDlgGenerated(wxWindow* parent) : //Suse Linux/X11: needs parent window, else there are z-order issues - wxDialog(parent, wxID_ANY, L"" /*title*/, wxDefaultPosition, wxDefaultSize, 0 /*style*/) + wxDialog(parent, wxID_ANY, L"" /*title*/, wxDefaultPosition, wxDefaultSize, wxFRAME_NO_TASKBAR /*style*/) { SetSizeHints(wxDefaultSize, wxDefaultSize); SetExtraStyle(this->GetExtraStyle() | wxWS_EX_TRANSIENT);