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

Caolán McNamara caolanm at redhat.com
Wed Nov 16 21:16:18 UTC 2016


 vcl/unx/gtk3/gtk3salnativewidgets-gtk.cxx |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

New commits:
commit 567580bddfa7b3d437b072698de77968c6513513
Author: Caolán McNamara <caolanm at redhat.com>
Date:   Wed Nov 16 21:12:58 2016 +0000

    Resolves: tdf#92776 tab names unreadable under Ambiance theme 3.20
    
    thanks Benjamin
    
    Change-Id: I7ea0f6c8a8b8b35f864036844f1dc786e1f6bda8
    Reviewed-on: https://gerrit.libreoffice.org/30910
    Reviewed-by: Caolán McNamara <caolanm at redhat.com>
    Tested-by: Caolán McNamara <caolanm at redhat.com>

diff --git a/vcl/unx/gtk3/gtk3salnativewidgets-gtk.cxx b/vcl/unx/gtk3/gtk3salnativewidgets-gtk.cxx
index ba8fb9f..908df09 100644
--- a/vcl/unx/gtk3/gtk3salnativewidgets-gtk.cxx
+++ b/vcl/unx/gtk3/gtk3salnativewidgets-gtk.cxx
@@ -1204,10 +1204,10 @@ GtkStyleContext* GtkSalGraphics::createNewContext(GtkControlPart ePart, gtk_widg
         }
         case GtkControlPart::Notebook:
         {
-            GtkWidgetPath *path = gtk_widget_path_new();
+            GtkWidgetPath *path = gtk_widget_path_copy(gtk_style_context_get_path(mpWindowStyle));
             gtk_widget_path_append_type(path, GTK_TYPE_NOTEBOOK);
             set_object_name(path, -1, "notebook");
-            return makeContext(path, nullptr);
+            return makeContext(path, mpWindowStyle);
         }
         case GtkControlPart::NotebookStack:
         {


More information about the Libreoffice-commits mailing list