From e6287e4dc937c213ca7016e69b70d0b6afb744ce Mon Sep 17 00:00:00 2001 From: Rodney Dawes Date: Fri, 30 Apr 2004 22:27:05 +0000 Subject: Update the alarm notify dialog to be HIG compliant 2004-04-30 Rodney Dawes * gui/alarm-notify/alarm-notify-dialog.c (alarm_notify_dialog): * gui/alarm-notify/alarm-notify.glade: Update the alarm notify dialog to be HIG compliant Fixes #41224 svn path=/trunk/; revision=25729 --- calendar/gui/alarm-notify/alarm-notify-dialog.c | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'calendar/gui/alarm-notify/alarm-notify-dialog.c') diff --git a/calendar/gui/alarm-notify/alarm-notify-dialog.c b/calendar/gui/alarm-notify/alarm-notify-dialog.c index da523e72f3..c914bdb8a0 100644 --- a/calendar/gui/alarm-notify/alarm-notify-dialog.c +++ b/calendar/gui/alarm-notify/alarm-notify-dialog.c @@ -22,6 +22,7 @@ #include #include #include +#include #include #include #include @@ -341,6 +342,10 @@ alarm_notify_dialog (time_t trigger, time_t occur_start, time_t occur_end, return NULL; } + gtk_widget_realize (an->dialog); + gtk_container_set_border_width (GTK_CONTAINER (GTK_DIALOG (an->dialog)->vbox), 0); + gtk_container_set_border_width (GTK_CONTAINER (GTK_DIALOG (an->dialog)->action_area), 12); + g_signal_connect (G_OBJECT (an->dialog), "destroy", G_CALLBACK (dialog_destroy_cb), an); -- cgit