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

Caolán McNamara (via logerrit) logerrit at kemper.freedesktop.org
Fri Jan 10 19:35:59 UTC 2020


 vcl/unx/gtk3/gtk3gtkinst.cxx |    3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

New commits:
commit ab6b0514c767ea3e5f1802b6f99412d1e726b2e1
Author:     Caolán McNamara <caolanm at redhat.com>
AuthorDate: Fri Jan 10 17:32:51 2020 +0000
Commit:     Caolán McNamara <caolanm at redhat.com>
CommitDate: Fri Jan 10 20:35:24 2020 +0100

    Related: tdf#127782 call signal_expanded after expansion in gtk case
    
    which is the same as the gen one
    
    Change-Id: Ia93598bb88d5a3f93c62e7096f8bc4ca69698a19
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/86563
    Tested-by: Jenkins
    Reviewed-by: Caolán McNamara <caolanm at redhat.com>

diff --git a/vcl/unx/gtk3/gtk3gtkinst.cxx b/vcl/unx/gtk3/gtk3gtkinst.cxx
index d52fb782df6a..c6dee4674a4f 100644
--- a/vcl/unx/gtk3/gtk3gtkinst.cxx
+++ b/vcl/unx/gtk3/gtk3gtkinst.cxx
@@ -12602,7 +12602,6 @@ private:
     {
         GtkInstanceExpander* pThis = static_cast<GtkInstanceExpander*>(widget);
         SolarMutexGuard aGuard;
-        pThis->signal_expanded();
 
         GtkWidget *pToplevel = gtk_widget_get_toplevel(GTK_WIDGET(pExpander));
 
@@ -12625,6 +12624,8 @@ private:
 
             gtk_window_resize(GTK_WINDOW(pToplevel), nToplevelWidth, nToplevelHeight);
         }
+
+        pThis->signal_expanded();
     }
 
 public:


More information about the Libreoffice-commits mailing list