diff options
author | infirit <[email protected]> | 2014-11-26 21:33:51 +0100 |
---|---|---|
committer | infirit <[email protected]> | 2014-11-26 21:33:51 +0100 |
commit | 6a796af0b88ba9ecb0cc08284e35e424507d3a13 (patch) | |
tree | 474962b6c8eb44ea685045d7aeae80b683ee0097 /multiload/properties.c | |
parent | 001a8b65d1f5cf0a453975af05a547bbdeea1c2f (diff) | |
download | mate-applets-6a796af0b88ba9ecb0cc08284e35e424507d3a13.tar.bz2 mate-applets-6a796af0b88ba9ecb0cc08284e35e424507d3a13.tar.xz |
Gtk3: Set homogenous per gnome-applets commit 5df9f98d66f9c2920122a2a86269d95bd68ce67a
Diffstat (limited to 'multiload/properties.c')
-rw-r--r-- | multiload/properties.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/multiload/properties.c b/multiload/properties.c index 3753a44b..9d233662 100644 --- a/multiload/properties.c +++ b/multiload/properties.c @@ -204,6 +204,9 @@ add_page(GtkWidget *notebook, gchar *label) GtkWidget *page_label; page = gtk_hbox_new(TRUE, 0); +#if GTK_CHECK_VERSION (3, 0, 0) + gtk_box_set_homogeneous (GTK_BOX (page), TRUE); +#endif page_label = gtk_label_new(label); gtk_container_set_border_width(GTK_CONTAINER(page), 6); |