messageTray: Allow to open summary item with up arrow
When using keynav in the top bar, menus may be opened using the down arrow; in a similar fashion, allow to open the summary boxpointer with the up arrow. https://bugzilla.gnome.org/show_bug.cgi?id=682243
This commit is contained in:
parent
2c130c8668
commit
a5d60050a2
@ -1221,6 +1221,7 @@ const SummaryItem = new Lang.Class({
|
|||||||
can_focus: true,
|
can_focus: true,
|
||||||
track_hover: true });
|
track_hover: true });
|
||||||
this.actor.label_actor = new St.Label({ text: source.title });
|
this.actor.label_actor = new St.Label({ text: source.title });
|
||||||
|
this.actor.connect('key-press-event', Lang.bind(this, this._onKeyPress));
|
||||||
this._sourceBox = new St.BoxLayout({ style_class: 'summary-source' });
|
this._sourceBox = new St.BoxLayout({ style_class: 'summary-source' });
|
||||||
|
|
||||||
this._sourceIcon = source.getSummaryIcon();
|
this._sourceIcon = source.getSummaryIcon();
|
||||||
@ -1268,6 +1269,14 @@ const SummaryItem = new Lang.Class({
|
|||||||
this._closeButton.visible = v;
|
this._closeButton.visible = v;
|
||||||
},
|
},
|
||||||
|
|
||||||
|
_onKeyPress: function(actor, event) {
|
||||||
|
if (event.get_key_symbol() == Clutter.KEY_Up) {
|
||||||
|
actor.emit('clicked', 1);
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
},
|
||||||
|
|
||||||
prepareNotificationStackForShowing: function() {
|
prepareNotificationStackForShowing: function() {
|
||||||
if (this.notificationStack.get_n_children() > 0)
|
if (this.notificationStack.get_n_children() > 0)
|
||||||
return;
|
return;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user