aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTed Gould <ted@gould.cx>2011-03-10 15:49:10 -0600
committerTed Gould <ted@gould.cx>2011-03-10 15:49:10 -0600
commited671c80bf5729a6b1cddc6f92b48899a3e6ae94 (patch)
treec40e1874d37ec3e7dbb36c24664b07070d37bfc6
parentd7b132d4fd70d4d4648210dc0a1d82fd7c37871e (diff)
downloadayatana-indicator-session-ed671c80bf5729a6b1cddc6f92b48899a3e6ae94.tar.gz
ayatana-indicator-session-ed671c80bf5729a6b1cddc6f92b48899a3e6ae94.tar.bz2
ayatana-indicator-session-ed671c80bf5729a6b1cddc6f92b48899a3e6ae94.zip
Add the --no-lock option to activate the session.
-rw-r--r--src/session-service.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/session-service.c b/src/session-service.c
index eb045c1..dc53f74 100644
--- a/src/session-service.c
+++ b/src/session-service.c
@@ -424,7 +424,7 @@ activate_guest_session (DbusmenuMenuitem * mi, guint timestamp, gpointer user_da
g_warning("Unable to activate guest session, falling back to command line activation.");
}
- if (!g_spawn_command_line_async(GUEST_SESSION_LAUNCHER, &error)) {
+ if (!g_spawn_command_line_async(GUEST_SESSION_LAUNCHER " --no-lock", &error)) {
g_warning("Unable to start guest session: %s", error->message);
g_error_free(error);
}