summaryrefslogtreecommitdiff
path: root/wx+/tooltip.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'wx+/tooltip.cpp')
-rw-r--r--wx+/tooltip.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/wx+/tooltip.cpp b/wx+/tooltip.cpp
index 91298db4..ea9852d3 100644
--- a/wx+/tooltip.cpp
+++ b/wx+/tooltip.cpp
@@ -73,7 +73,7 @@ void Tooltip::show(const wxString& text, wxPoint mousePos, const wxBitmap* bmp)
}
tipWindow->GetSizer()->SetSizeHints(tipWindow); //~=Fit() + SetMinSize()
- //Linux: Fit() seems to be somewhat broken => this needs to be called EVERY time inside show, not only if text or bmp change
+ //Linux: Fit() seems to be broken => this needs to be called EVERY time inside show, not only if text or bmp change
const wxPoint newPos = wxTheApp->GetLayoutDirection() == wxLayout_RightToLeft ?
mousePos - wxPoint(30 + tipWindow->GetSize().GetWidth(), 0) :
bgstack15