messageTray: Fix indentation

This commit is contained in:
Jasper St. Pierre 2013-02-18 04:37:16 -05:00
parent 6ffe3a424c
commit 4cf09f46e7

View File

@ -2792,20 +2792,20 @@ const MessageTray = new Lang.Class({
return true; return true;
}, },
_onSummaryBoxPointerKeyPress: function(actor, event) { _onSummaryBoxPointerKeyPress: function(actor, event) {
switch (event.get_key_symbol()) { switch (event.get_key_symbol()) {
case Clutter.KEY_Down: case Clutter.KEY_Down:
case Clutter.KEY_Escape: case Clutter.KEY_Escape:
this._setClickedSummaryItem(null); this._setClickedSummaryItem(null);
this._updateState(); this._updateState();
return true; return true;
case Clutter.KEY_Delete: case Clutter.KEY_Delete:
this._clickedSummaryItem.source.destroy(); this._clickedSummaryItem.source.destroy();
this._escapeTray(); this._escapeTray();
return true; return true;
} }
return false; return false;
}, },
_onSummaryBoxPointerUngrabbed: function() { _onSummaryBoxPointerUngrabbed: function() {
this._summaryBoxPointerState = State.HIDING; this._summaryBoxPointerState = State.HIDING;