summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDave Camp <dave@ximian.com>2002-07-02 07:33:04 +0000
committerDave Camp <campd@src.gnome.org>2002-07-02 07:33:04 +0000
commit3bf0d3bea1f76ef106a9cc0cf52c673a7f04d5ff (patch)
treec7d7fbe93088f91f2c7b1c7e922569b66a80305a
parent952f9e5346c595f8b330e636d2d435fb1facda24 (diff)
downloadnautilus-3bf0d3bea1f76ef106a9cc0cf52c673a7f04d5ff.tar.gz
Set the restart style to RESTART_IF_RUNNING instead of RESTART_NEVER when
2002-07-02 Dave Camp <dave@ximian.com> * src/nautilus-application.c (set_session_restart): Set the restart style to RESTART_IF_RUNNING instead of RESTART_NEVER when restart is FALSE.
-rw-r--r--ChangeLog6
-rw-r--r--src/nautilus-application.c2
2 files changed, 7 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 683ec4e34..d403d2123 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2002-07-02 Dave Camp <dave@ximian.com>
+
+ * src/nautilus-application.c (set_session_restart): Set the
+ restart style to RESTART_IF_RUNNING instead of RESTART_NEVER when
+ restart is FALSE.
+
2002-07-01 Dave Camp <dave@ximian.com>
* src/nautilus-window-menus.c: (forget_history_if_confirmed):
diff --git a/src/nautilus-application.c b/src/nautilus-application.c
index 456692a19..2cbb3b5ee 100644
--- a/src/nautilus-application.c
+++ b/src/nautilus-application.c
@@ -947,7 +947,7 @@ set_session_restart (GnomeClient *client, gboolean restart)
/* Don't respawn in debug mode */
gnome_client_set_restart_style (client, GNOME_RESTART_IMMEDIATELY);
} else {
- gnome_client_set_restart_style (client, GNOME_RESTART_NEVER);
+ gnome_client_set_restart_style (client, GNOME_RESTART_IF_RUNNING);
}
}