summaryrefslogtreecommitdiff
path: root/wx+/tooltip.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'wx+/tooltip.cpp')
-rw-r--r--wx+/tooltip.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/wx+/tooltip.cpp b/wx+/tooltip.cpp
index 5dc64c90..ebf3c61c 100644
--- a/wx+/tooltip.cpp
+++ b/wx+/tooltip.cpp
@@ -43,7 +43,7 @@ public:
this->Layout();
bSizer158->Fit(this);
-#if defined FFS_WIN //prevent window stealing focus!
+#if defined ZEN_WIN //prevent window stealing focus!
Disable(); //= dark/grey text and image on Linux; no visible difference on OS X
#endif
}
@@ -92,7 +92,7 @@ void Tooltip::hide()
{
if (tipWindow)
{
-#ifdef FFS_LINUX
+#ifdef ZEN_LINUX
//on wxGTK the tooltip is sometimes not shown again after it was hidden: e.g. drag-selection on middle grid
tipWindow->Destroy(); //apply brute force:
tipWindow = nullptr; //
bgstack15