Thank you for the latest release of this project! I have investigated how to suppress (on GNU/Linux) the taskbar entry for the tooltip that appears when the user mouses over the left-or-right indicator in the middle of the file grid. Would you please consider incorporating this patch into the upstream:
--- a/wx+/tooltip.cpp
+++ b/wx+/tooltip.cpp
@@ -9,6 +9,7 @@
#include <wx/sizer.h>
#include <wx/statbmp.h>
#include <wx/settings.h>
+#include <wx/frame.h>
#include <wx/app.h>
#include "image_tools.h"
#include "bitmap_button.h"
@@ -27,7 +28,7 @@ const int TIP_WINDOW_OFFSET_DIP = 30;
class Tooltip::TooltipDlgGenerated : public wxDialog
{
public:
- TooltipDlgGenerated(wxWindow* parent) : wxDialog(parent, wxID_ANY, L"" /*title*/, wxDefaultPosition, wxDefaultSize, 0 /*style*/)
+ TooltipDlgGenerated(wxWindow* parent) : wxDialog(parent, wxID_ANY, L"" /*title*/, wxDefaultPosition, wxDefaultSize, wxFRAME_NO_TASKBAR /*style*/)
{
//Suse Linux/X11: needs parent window, else there are z-order issues