aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChenthill Palanisamy <pchen@src.gnome.org>2006-01-05 15:53:21 +0800
committerChenthill Palanisamy <pchen@src.gnome.org>2006-01-05 15:53:21 +0800
commit6f8f1c6d8d3a6f46e461352a93b6676d2871a1b4 (patch)
tree631c69f08c94cf541d663d613185863e6f3f721b
parentf7b72fea208b2534a877474716806b57c4bf2375 (diff)
downloadgsoc2013-evolution-6f8f1c6d8d3a6f46e461352a93b6676d2871a1b4.tar
gsoc2013-evolution-6f8f1c6d8d3a6f46e461352a93b6676d2871a1b4.tar.gz
gsoc2013-evolution-6f8f1c6d8d3a6f46e461352a93b6676d2871a1b4.tar.bz2
gsoc2013-evolution-6f8f1c6d8d3a6f46e461352a93b6676d2871a1b4.tar.lz
gsoc2013-evolution-6f8f1c6d8d3a6f46e461352a93b6676d2871a1b4.tar.xz
gsoc2013-evolution-6f8f1c6d8d3a6f46e461352a93b6676d2871a1b4.tar.zst
gsoc2013-evolution-6f8f1c6d8d3a6f46e461352a93b6676d2871a1b4.zip
make the alarm dialog modal.
svn path=/trunk/; revision=31063
-rw-r--r--calendar/ChangeLog5
-rw-r--r--calendar/gui/dialogs/event-page.c1
2 files changed, 6 insertions, 0 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog
index 4d23ba3faf..e50d92ab05 100644
--- a/calendar/ChangeLog
+++ b/calendar/ChangeLog
@@ -1,5 +1,10 @@
2006-01-05 Johnny Jacob <johnnyjacob@gmail.com>
+ * gui/dialogs/event-page.c (init_widgets): Set alarm-dialog as
+ modal.
+
+2006-01-05 Johnny Jacob <johnnyjacob@gmail.com>
+
Fixes #216535
* gui/dialogs/event-page.c (end_date_changed_cb ): Added. Signal
handler for end_time.
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);