diff options
author | Stefano Karapetsas <[email protected]> | 2014-02-05 15:14:54 +0100 |
---|---|---|
committer | infirit <[email protected]> | 2014-02-08 17:26:52 +0100 |
commit | 6841ac965e7b2fc8f00a74b4ceea88bfb70332aa (patch) | |
tree | 74d9f0f5a0d74a73a36b4a179908a69925f0401a /timerapplet/timerapplet.c | |
parent | 353c4d7a70ea3c97a8eec4515c56859c42d25554 (diff) | |
download | mate-applets-6841ac965e7b2fc8f00a74b4ceea88bfb70332aa.tar.bz2 mate-applets-6841ac965e7b2fc8f00a74b4ceea88bfb70332aa.tar.xz |
timerapplet: Add GTK3 support
Diffstat (limited to 'timerapplet/timerapplet.c')
-rw-r--r-- | timerapplet/timerapplet.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/timerapplet/timerapplet.c b/timerapplet/timerapplet.c index 8e64c14f..6a50e244 100644 --- a/timerapplet/timerapplet.c +++ b/timerapplet/timerapplet.c @@ -361,7 +361,7 @@ timer_preferences_callback (GtkAction *action, TimerApplet *applet) 0, 0); g_settings_bind (applet->settings, SHOW_DIALOG_KEY, widget, "active", G_SETTINGS_BIND_DEFAULT); - gtk_box_pack_start_defaults (GTK_BOX (dialog->vbox), GTK_WIDGET (table)); + gtk_box_pack_start (GTK_BOX (gtk_dialog_get_content_area (dialog)), GTK_WIDGET (table), TRUE, TRUE, 0); g_signal_connect (dialog, "response", G_CALLBACK (gtk_widget_destroy), dialog); |