messageTray: Jiggle some code around
This is to put state management with state management https://bugzilla.gnome.org/show_bug.cgi?id=694038
This commit is contained in:
parent
f3901eb668
commit
4a3a61bea1
@ -1864,11 +1864,6 @@ const MessageTray = new Lang.Class({
|
||||
return false;
|
||||
},
|
||||
|
||||
openTray: function() {
|
||||
this._traySummoned = true;
|
||||
this._updateState();
|
||||
},
|
||||
|
||||
_onNotificationKeyRelease: function(actor, event) {
|
||||
if (event.get_key_symbol() == Clutter.KEY_Escape && event.get_state() == 0) {
|
||||
this._closeNotification();
|
||||
@ -2035,6 +2030,11 @@ const MessageTray = new Lang.Class({
|
||||
this._updateState();
|
||||
},
|
||||
|
||||
openTray: function() {
|
||||
this._traySummoned = true;
|
||||
this._updateState();
|
||||
},
|
||||
|
||||
toggle: function() {
|
||||
this._traySummoned = !this._traySummoned;
|
||||
this._updateState();
|
||||
|
Loading…
Reference in New Issue
Block a user