summaryrefslogtreecommitdiff
path: root/src
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 /src
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.
Diffstat (limited to 'src')
-rw-r--r--src/nautilus-application.c2
1 files changed, 1 insertions, 1 deletions
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);
}
}