vcl/unx/gtk3/gtkinst.cxx | 3 +++
1 file changed, 3 insertions(+)
New commits:
commit 9d39aba021434fbb07f7e362ecaab1c75d2ff5fc
Author: Caolán McNamara <[email protected]>
AuthorDate: Mon Jan 24 13:18:56 2022 +0000
Commit: Michael Stahl <[email protected]>
CommitDate: Tue Jan 25 10:11:12 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/+/128814
Tested-by: Jenkins
Reviewed-by: Michael Stahl <[email protected]>
diff --git a/vcl/unx/gtk3/gtkinst.cxx b/vcl/unx/gtk3/gtkinst.cxx
index 8db5257711c5..515eabb1fe73 100644
--- a/vcl/unx/gtk3/gtkinst.cxx
+++ b/vcl/unx/gtk3/gtkinst.cxx
@@ -6958,6 +6958,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);