summaryrefslogtreecommitdiff
path: root/pluma/pluma-statusbar.c
diff options
context:
space:
mode:
authorraveit65 <[email protected]>2015-05-16 22:09:32 +0200
committerraveit65 <[email protected]>2015-05-16 22:09:32 +0200
commit627201d5a0e30f6617c735d2e85a71833394db8f (patch)
tree41ef016f6709f0d3cc89fdeb3eb8545d841cf3f6 /pluma/pluma-statusbar.c
parente1b2a4e298702f28a9d22b5692f9f19e71513756 (diff)
downloadpluma-627201d5a0e30f6617c735d2e85a71833394db8f.tar.bz2
pluma-627201d5a0e30f6617c735d2e85a71833394db8f.tar.xz
GTK3: remove the top and bottom margin from GTKToggleButton in statusbar
- this makes the statusbar smaller and follows GTK2 style
Diffstat (limited to 'pluma/pluma-statusbar.c')
-rw-r--r--pluma/pluma-statusbar.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/pluma/pluma-statusbar.c b/pluma/pluma-statusbar.c
index 7e134005..f1a0fd54 100644
--- a/pluma/pluma-statusbar.c
+++ b/pluma/pluma-statusbar.c
@@ -110,6 +110,11 @@ pluma_statusbar_init (PlumaStatusbar *statusbar)
statusbar->priv = PLUMA_STATUSBAR_GET_PRIVATE (statusbar);
+#if GTK_CHECK_VERSION (3, 0, 0)
+ gtk_widget_set_margin_top (GTK_WIDGET (statusbar), 0);
+ gtk_widget_set_margin_bottom (GTK_WIDGET (statusbar), 0);
+#endif
+
statusbar->priv->overwrite_mode_label = gtk_label_new (NULL);
gtk_label_set_width_chars (GTK_LABEL (statusbar->priv->overwrite_mode_label),
get_overwrite_mode_length ());