diff options
author | Chenthill Palanisamy <pchen@src.gnome.org> | 2006-01-05 15:53:21 +0800 |
---|---|---|
committer | Chenthill Palanisamy <pchen@src.gnome.org> | 2006-01-05 15:53:21 +0800 |
commit | 6f8f1c6d8d3a6f46e461352a93b6676d2871a1b4 (patch) | |
tree | 631c69f08c94cf541d663d613185863e6f3f721b /calendar/gui | |
parent | f7b72fea208b2534a877474716806b57c4bf2375 (diff) | |
download | gsoc2013-evolution-6f8f1c6d8d3a6f46e461352a93b6676d2871a1b4.tar.gz gsoc2013-evolution-6f8f1c6d8d3a6f46e461352a93b6676d2871a1b4.tar.zst gsoc2013-evolution-6f8f1c6d8d3a6f46e461352a93b6676d2871a1b4.zip |
make the alarm dialog modal.
svn path=/trunk/; revision=31063
Diffstat (limited to 'calendar/gui')
-rw-r--r-- | calendar/gui/dialogs/event-page.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/calendar/gui/dialogs/event-page.c b/calendar/gui/dialogs/event-page.c index 514b422878..702007120e 100644 --- a/calendar/gui/dialogs/event-page.c +++ b/calendar/gui/dialogs/event-page.c @@ -2785,6 +2785,7 @@ init_widgets (EventPage *epage) /* Alarm dialog */ g_signal_connect (GTK_DIALOG (priv->alarm_dialog), "response", G_CALLBACK (gtk_widget_hide), priv->alarm_dialog); gtk_widget_hide (priv->alarm_dialog); + gtk_window_set_modal (priv->alarm_dialog, TRUE); /* Meeting List View */ g_signal_connect (priv->list_view, "attendee_added", G_CALLBACK (attendee_added_cb), epage); |