summaryrefslogtreecommitdiff
path: root/vcl/unx/gtk3/gtk3gtkinst.cxx
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2020-08-24 14:47:23 +0100
committerCaolán McNamara <caolanm@redhat.com>2020-08-24 23:54:12 +0200
commit3da6bd8995bcdc727936185aff62c7681a86a239 (patch)
treee822236b64329a102a3182c897f210988f68d46a /vcl/unx/gtk3/gtk3gtkinst.cxx
parent052ef59443015c5b8a21dcf978149d6e759a8663 (diff)
tdf#136067 left align GtkMenuButtons contents
most already are, align the rest too and have for gtk "fill" the label widget Change-Id: I6f75c5c6ebaad0d2e3301854882aeaf3eab8580b Reviewed-on: https://gerrit.libreoffice.org/c/core/+/101280 Tested-by: Jenkins Reviewed-by: Caolán McNamara <caolanm@redhat.com>
Diffstat (limited to 'vcl/unx/gtk3/gtk3gtkinst.cxx')
-rw-r--r--vcl/unx/gtk3/gtk3gtkinst.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/vcl/unx/gtk3/gtk3gtkinst.cxx b/vcl/unx/gtk3/gtk3gtkinst.cxx
index c73966efcd5c..85762c4893f1 100644
--- a/vcl/unx/gtk3/gtk3gtkinst.cxx
+++ b/vcl/unx/gtk3/gtk3gtkinst.cxx
@@ -7328,7 +7328,7 @@ public:
gtk_style_context_get_style(pContext, "image-spacing", &nImageSpacing, nullptr);
m_pBox = GTK_BOX(gtk_box_new(GTK_ORIENTATION_HORIZONTAL, nImageSpacing));
- gtk_box_pack_start(m_pBox, m_pLabel, true, false, 0);
+ gtk_box_pack_start(m_pBox, m_pLabel, true, true, 0);
g_object_unref(m_pLabel);
if (gtk_toggle_button_get_mode(GTK_TOGGLE_BUTTON(m_pMenuButton)))