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

New commits:
commit 282e49b2f7bb3d6993cd2151064d6b2eddfe940b
Author:     Caolán McNamara <[email protected]>
AuthorDate: Thu Oct 11 11:47:17 2018 +0100
Commit:     Caolán McNamara <[email protected]>
CommitDate: Thu Oct 11 14:57:41 2018 +0200

    don't show_all null popover
    
    Change-Id: Id918a413febc39a8f147bd1b65b7204433d91ae1
    Reviewed-on: https://gerrit.libreoffice.org/61663
    Tested-by: Jenkins
    Reviewed-by: Caolán McNamara <[email protected]>
    Tested-by: Caolán McNamara <[email protected]>

diff --git a/vcl/unx/gtk3/gtk3gtkinst.cxx b/vcl/unx/gtk3/gtk3gtkinst.cxx
index 970e53b0cbb4..a786e48e0233 100644
--- a/vcl/unx/gtk3/gtk3gtkinst.cxx
+++ b/vcl/unx/gtk3/gtk3gtkinst.cxx
@@ -3416,7 +3416,8 @@ public:
         else
         {
             gtk_menu_button_set_popover(m_pMenuButton, m_pPopover);
-            gtk_widget_show_all(m_pPopover);
+            if (m_pPopover)
+                gtk_widget_show_all(m_pPopover);
         }
     }
 
_______________________________________________
Libreoffice-commits mailing list
[email protected]
https://lists.freedesktop.org/mailman/listinfo/libreoffice-commits

Reply via email to