vcl/unx/gtk3/gtkinst.cxx | 3 +++
1 file changed, 3 insertions(+)
New commits:
commit 54930a004e42f76f310c7ae15f61d07fbb7c7bdb
Author: Caolán McNamara <[email protected]>
AuthorDate: Mon Jan 24 13:18:56 2022 +0000
Commit: Caolán McNamara <[email protected]>
CommitDate: Mon Jan 24 17:23:28 2022 +0100
gtk3: "expand" icon in reference windows goes missing on entering shrunk
mode
Change-Id: Ie303f82d1cc0de10ebd14248a31111a16be344f5
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/128867
Tested-by: Jenkins
Reviewed-by: Caolán McNamara <[email protected]>
diff --git a/vcl/unx/gtk3/gtkinst.cxx b/vcl/unx/gtk3/gtkinst.cxx
index 796ea1f37844..718342710d62 100644
--- a/vcl/unx/gtk3/gtkinst.cxx
+++ b/vcl/unx/gtk3/gtkinst.cxx
@@ -6973,6 +6973,9 @@ public:
gtk_container_set_border_width(GTK_CONTAINER(m_pDialog), 0);
if (GtkWidget* pActionArea =
gtk_dialog_get_action_area(GTK_DIALOG(m_pDialog)))
gtk_widget_hide(pActionArea);
+ gtk_widget_show_all(pRefEdit);
+ if (pRefBtn)
+ gtk_widget_show_all(pRefBtn);
#else
if (GtkWidget* pActionArea =
gtk_dialog_get_header_bar(GTK_DIALOG(m_pDialog)))
gtk_widget_hide(pActionArea);