From 6d40cb98e7e7a24f66662f0a06ecf8e93ed5dea2 Mon Sep 17 00:00:00 2001 From: "Jasper St. Pierre" Date: Mon, 16 Mar 2015 10:55:02 -0700 Subject: [PATCH] loginDialog: Don't arbitrarily pick a random session for the user gdm should be in charge of telling us the default session, and it should pick one for the user if she doesn't already have one. https://bugzilla.gnome.org/show_bug.cgi?id=740142 --- js/gdm/loginDialog.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/js/gdm/loginDialog.js b/js/gdm/loginDialog.js index ce569bfdb..6b90bb0b5 100644 --- a/js/gdm/loginDialog.js +++ b/js/gdm/loginDialog.js @@ -354,9 +354,6 @@ const SessionMenuButton = new Lang.Class({ this._menu.addMenuItem(item); this._items[id] = item; - if (!this._activeSessionId) - this.setActiveSession(id); - item.connect('activate', Lang.bind(this, function() { this.setActiveSession(id); }));