[Libreoffice-commits] core.git: vcl/unx

Khaled Hosny khaledhosny at eglug.org
Wed Apr 13 12:49:11 UTC 2016


 vcl/unx/gtk3/gtk3gtkframe.cxx |    2 ++
 1 file changed, 2 insertions(+)

New commits:
commit 20c9d0f3849ed8ccda7d4d270aabddf37db5c390
Author: Khaled Hosny <khaledhosny at eglug.org>
Date:   Wed Apr 13 14:46:23 2016 +0200

    Fix showing tooltips in RTL UI with GTK 3
    
    Change-Id: I29c2c7988fb97e2472188a600a483e5f6ed12d80

diff --git a/vcl/unx/gtk3/gtk3gtkframe.cxx b/vcl/unx/gtk3/gtk3gtkframe.cxx
index 742f812..fd896db 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;
 }


More information about the Libreoffice-commits mailing list