summaryrefslogtreecommitdiff
path: root/vcl
diff options
context:
space:
mode:
authorKhaled Hosny <khaledhosny@eglug.org>2016-04-13 14:46:23 +0200
committerKhaled Hosny <khaledhosny@eglug.org>2016-04-13 14:47:52 +0200
commit20c9d0f3849ed8ccda7d4d270aabddf37db5c390 (patch)
tree0bdc65935330b4de93485b8ddb356c7f8256223e /vcl
parenta7df6b4964e4c9af33e1d030042b6c0a5e59dd55 (diff)
Fix showing tooltips in RTL UI with GTK 3
Change-Id: I29c2c7988fb97e2472188a600a483e5f6ed12d80
Diffstat (limited to 'vcl')
-rw-r--r--vcl/unx/gtk3/gtk3gtkframe.cxx2
1 files changed, 2 insertions, 0 deletions
diff --git a/vcl/unx/gtk3/gtk3gtkframe.cxx b/vcl/unx/gtk3/gtk3gtkframe.cxx
index 742f812810ad..fd896db7e9b9 100644
--- a/vcl/unx/gtk3/gtk3gtkframe.cxx
+++ b/vcl/unx/gtk3/gtk3gtkframe.cxx
@@ -2439,6 +2439,8 @@ gboolean GtkSalFrame::signalTooltipQuery(GtkWidget*, gint /*x*/, gint /*y*/,
aHelpArea.y = pThis->m_aHelpArea.Top();
aHelpArea.width = pThis->m_aHelpArea.GetWidth();
aHelpArea.height = pThis->m_aHelpArea.GetHeight();
+ if (AllSettings::GetLayoutRTL())
+ aHelpArea.x = pThis->maGeometry.nWidth-aHelpArea.width-1-aHelpArea.x;
gtk_tooltip_set_tip_area(tooltip, &aHelpArea);
return true;
}