diff options
author | Rodrigo Moya <rodrigo@ximian.com> | 2004-03-04 20:09:14 +0800 |
---|---|---|
committer | Rodrigo Moya <rodrigo@src.gnome.org> | 2004-03-04 20:09:14 +0800 |
commit | 2134a444352dee5cd4ce339db861d68381c37388 (patch) | |
tree | 4c581904d0b8c5aa3d6b9f0f1f3602e6afc8398c /calendar | |
parent | b30d1ba7e71e64a81f5b5ba80c8ac66e6bbf929b (diff) | |
download | gsoc2013-evolution-2134a444352dee5cd4ce339db861d68381c37388.tar.gz gsoc2013-evolution-2134a444352dee5cd4ce339db861d68381c37388.tar.zst gsoc2013-evolution-2134a444352dee5cd4ce339db861d68381c37388.zip |
don't make the dialog window sticky, the icon on the system tray already
2004-03-04 Rodrigo Moya <rodrigo@ximian.com>
* gui/alarm-notify/alarm-notify-dialog.c (alarm_notify_dialog):
don't make the dialog window sticky, the icon on the system tray
already shows in all workspaces.
svn path=/trunk/; revision=24963
Diffstat (limited to 'calendar')
-rw-r--r-- | calendar/ChangeLog | 6 | ||||
-rw-r--r-- | calendar/gui/alarm-notify/alarm-notify-dialog.c | 1 |
2 files changed, 6 insertions, 1 deletions
diff --git a/calendar/ChangeLog b/calendar/ChangeLog index 28dbfd03a3..6a04d05ee0 100644 --- a/calendar/ChangeLog +++ b/calendar/ChangeLog @@ -1,5 +1,11 @@ 2004-03-04 Rodrigo Moya <rodrigo@ximian.com> + * gui/alarm-notify/alarm-notify-dialog.c (alarm_notify_dialog): + don't make the dialog window sticky, the icon on the system tray + already shows in all workspaces. + +2004-03-04 Rodrigo Moya <rodrigo@ximian.com> + Fixes #54028 * gui/alarm-notify/alarm-queue.c (query_objects_changed_cb): fixed the diff --git a/calendar/gui/alarm-notify/alarm-notify-dialog.c b/calendar/gui/alarm-notify/alarm-notify-dialog.c index e7c87c2156..c315781e6f 100644 --- a/calendar/gui/alarm-notify/alarm-notify-dialog.c +++ b/calendar/gui/alarm-notify/alarm-notify-dialog.c @@ -377,7 +377,6 @@ alarm_notify_dialog (time_t trigger, time_t occur_start, time_t occur_end, if (!GTK_WIDGET_REALIZED (an->dialog)) gtk_widget_realize (an->dialog); - gtk_window_stick (GTK_WINDOW (an->dialog)); gtk_window_set_icon_from_file (GTK_WINDOW (an->dialog), EVOLUTION_IMAGESDIR "/alarm.png", NULL); gtk_widget_show (an->dialog); |