aboutsummaryrefslogtreecommitdiffstats
path: root/calendar
diff options
context:
space:
mode:
authorChenthill Palanisamy <pchen@src.gnome.org>2005-09-30 22:39:40 +0800
committerChenthill Palanisamy <pchen@src.gnome.org>2005-09-30 22:39:40 +0800
commit60e6b49b81d8ae1cd8c06430da520dd4a0f0bce5 (patch)
treec20cf725ed6ffe299149b681ef25b83cb7a00e51 /calendar
parentec205d090664b06396c723ce41e474d72f8e4b61 (diff)
downloadgsoc2013-evolution-60e6b49b81d8ae1cd8c06430da520dd4a0f0bce5.tar
gsoc2013-evolution-60e6b49b81d8ae1cd8c06430da520dd4a0f0bce5.tar.gz
gsoc2013-evolution-60e6b49b81d8ae1cd8c06430da520dd4a0f0bce5.tar.bz2
gsoc2013-evolution-60e6b49b81d8ae1cd8c06430da520dd4a0f0bce5.tar.lz
gsoc2013-evolution-60e6b49b81d8ae1cd8c06430da520dd4a0f0bce5.tar.xz
gsoc2013-evolution-60e6b49b81d8ae1cd8c06430da520dd4a0f0bce5.tar.zst
gsoc2013-evolution-60e6b49b81d8ae1cd8c06430da520dd4a0f0bce5.zip
fixes #273781.
svn path=/trunk/; revision=30449
Diffstat (limited to 'calendar')
-rw-r--r--calendar/ChangeLog9
-rw-r--r--calendar/gui/alarm-notify/alarm-notify-dialog.c2
2 files changed, 10 insertions, 1 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog
index bb4f2a07cc..9fc9c5a905 100644
--- a/calendar/ChangeLog
+++ b/calendar/ChangeLog
@@ -1,4 +1,11 @@
-2005-09-10 P. S. Chakravarthi <pchakravarthi@novell.com>
+2005-09-30 Chenthill Palanisamy <pchenthill@novell.com>
+
+ Fixes #273781
+ * gui/alarm-notify/alarm-notify-dialog.c:
+ (notified_alarms_dialog_new): Set the alarm window to
+ appear on the top.
+
+2005-09-30 P. S. Chakravarthi <pchakravarthi@novell.com>
Fix #274188
* gui/e-cal-model.c
diff --git a/calendar/gui/alarm-notify/alarm-notify-dialog.c b/calendar/gui/alarm-notify/alarm-notify-dialog.c
index 6c7f4b3d1f..667ba997b0 100644
--- a/calendar/gui/alarm-notify/alarm-notify-dialog.c
+++ b/calendar/gui/alarm-notify/alarm-notify-dialog.c
@@ -245,6 +245,8 @@ notified_alarms_dialog_new (void)
gtk_tree_view_set_model (GTK_TREE_VIEW(an->treeview), model);
+ gtk_window_set_keep_above (GTK_WINDOW (an->dialog), TRUE);
+
column = gtk_tree_view_column_new_with_attributes (_("Start time"),
renderer, "text", ALARM_DISPLAY_COLUMN, NULL);