diff options
author | Stefano Karapetsas <[email protected]> | 2014-02-05 15:14:54 +0100 |
---|---|---|
committer | Stefano Karapetsas <[email protected]> | 2014-02-05 15:14:54 +0100 |
commit | 91e9e9fe28c644349b63c03e7f18390e4f84ec65 (patch) | |
tree | 74d9f0f5a0d74a73a36b4a179908a69925f0401a | |
parent | 359d9de7cf52263e1bf450e0315662ab537d0fc5 (diff) | |
download | mate-applets-91e9e9fe28c644349b63c03e7f18390e4f84ec65.tar.bz2 mate-applets-91e9e9fe28c644349b63c03e7f18390e4f84ec65.tar.xz |
timerapplet: Add GTK3 support
-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); |