summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2020-01-10 17:32:51 +0000
committerAdolfo Jayme Barrientos <fitojb@ubuntu.com>2020-01-18 22:03:45 +0100
commit06f761fe43b184fb0b8306967e55da61d2b1ca1b (patch)
treed79299a8235f69ea629b966dc41b65065643727c
parent6d1cc107dd729e667d866e17d977cc94ce76d887 (diff)
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/+/86564 Tested-by: Jenkins Reviewed-by: Adolfo Jayme Barrientos <fitojb@ubuntu.com>
-rw-r--r--vcl/unx/gtk3/gtk3gtkinst.cxx3
1 files changed, 2 insertions, 1 deletions
diff --git a/vcl/unx/gtk3/gtk3gtkinst.cxx b/vcl/unx/gtk3/gtk3gtkinst.cxx
index 766c13fb440c..0b7e019b4de7 100644
--- a/vcl/unx/gtk3/gtk3gtkinst.cxx
+++ b/vcl/unx/gtk3/gtk3gtkinst.cxx
@@ -12213,7 +12213,6 @@ private:
{
GtkInstanceExpander* pThis = static_cast<GtkInstanceExpander*>(widget);
SolarMutexGuard aGuard;
- pThis->signal_expanded();
GtkWidget *pToplevel = gtk_widget_get_toplevel(GTK_WIDGET(pExpander));
@@ -12236,6 +12235,8 @@ private:
gtk_window_resize(GTK_WINDOW(pToplevel), nToplevelWidth, nToplevelHeight);
}
+
+ pThis->signal_expanded();
}
public: