mirror of
https://github.com/edu4rdshl/gnome-shell.git
synced 2026-07-18 07:34:54 +00:00
shellDBus: Fix SetActive(false) for ScreenSaver DBus API
Someone changed .unlock() to deactivate() for the obvious symmetry with activate(), but forgot to update it here. https://bugzilla.gnome.org/show_bug.cgi?id=696585
This commit is contained in:
parent
a7cd4657f5
commit
512f0a67fb
1 changed files with 1 additions and 1 deletions
|
|
@ -397,7 +397,7 @@ const ScreenSaverDBus = new Lang.Class({
|
|||
if (active)
|
||||
this._screenShield.activate(true);
|
||||
else
|
||||
this._screenShield.unlock(false);
|
||||
this._screenShield.deactivate(false);
|
||||
},
|
||||
|
||||
GetActive: function() {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue