aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorConor Curran <conor.curran@canonical.com>2012-02-14 17:40:55 +0000
committerConor Curran <conor.curran@canonical.com>2012-02-14 17:40:55 +0000
commit13d6c2bd152c5c9de79537f541f687e3dcd8ba7b (patch)
tree0eac10348ff9b5b6c88ae7100b8784154fee54d3
parent512b6ab53a8d2b023131c60087b04b6dc216e4fe (diff)
parent9dec8f6fe22ccd4c52dd1d7e9fd925b87c2830c7 (diff)
downloadayatana-indicator-session-13d6c2bd152c5c9de79537f541f687e3dcd8ba7b.tar.gz
ayatana-indicator-session-13d6c2bd152c5c9de79537f541f687e3dcd8ba7b.tar.bz2
ayatana-indicator-session-13d6c2bd152c5c9de79537f541f687e3dcd8ba7b.zip
merge roberts lock fix0.3.91
-rw-r--r--src/user-menu-mgr.c28
1 files changed, 2 insertions, 26 deletions
diff --git a/src/user-menu-mgr.c b/src/user-menu-mgr.c
index 3f4bdc4..7aad2af 100644
--- a/src/user-menu-mgr.c
+++ b/src/user-menu-mgr.c
@@ -285,29 +285,11 @@ check_new_session ()
return TRUE;
}
-/* Check to see if the lockdown key is protecting from
- locking the screen. If not, lock it. */
-static void
-lock_if_possible (void) {
- ensure_settings_client ();
-
- if (!g_settings_get_boolean (settings, LOCKDOWN_KEY_SCREENSAVER)) {
- lock_screen(NULL, 0, NULL);
- }
-
- return;
-}
-
-
/* Starts a new generic session */
static void
activate_new_session (DbusmenuMenuitem * mi, guint timestamp, gpointer user_data)
{
- lock_if_possible();
-
- users_service_dbus_show_greeter (USERS_SERVICE_DBUS(user_data));
-
- return;
+ users_service_dbus_show_greeter (USERS_SERVICE_DBUS(user_data));
}
/* Activates a session for a particular user. */
@@ -317,8 +299,6 @@ activate_user_session (DbusmenuMenuitem *mi, guint timestamp, gpointer user_data
UserData *user = (UserData *)user_data;
UsersServiceDbus *service = user->service;
- lock_if_possible();
-
users_service_dbus_activate_user_session (service, user);
}
@@ -406,11 +386,7 @@ activate_guest_session (DbusmenuMenuitem * mi, guint timestamp, gpointer user_da
UserMenuMgr* user_mgr = USER_MENU_MGR(user_data);
UsersServiceDbus *service = user_mgr->users_dbus_interface;
- lock_if_possible();
-
- if (users_service_dbus_activate_guest_session(service)) {
- return;
- }
+ users_service_dbus_activate_guest_session(service);
}