modalDialog: Add alternative keys to activate default
Currently Return is used to activate the default button of a modal dialog if no key is specified. It makes sense to allow alternatives as the keypad's Enter key as well in this case. https://bugzilla.gnome.org/show_bug.cgi?id=685511
This commit is contained in:
parent
20d4ffde6e
commit
55284e418c
@ -131,8 +131,11 @@ const ModalDialog = new Lang.Class({
|
|||||||
let key = buttonInfo['key'];
|
let key = buttonInfo['key'];
|
||||||
let isDefault = buttonInfo['default'];
|
let isDefault = buttonInfo['default'];
|
||||||
|
|
||||||
if (isDefault && !key)
|
if (isDefault && !key) {
|
||||||
|
this._actionKeys[Clutter.KEY_KP_Enter] = action;
|
||||||
|
this._actionKeys[Clutter.KEY_ISO_Enter] = action;
|
||||||
key = Clutter.KEY_Return;
|
key = Clutter.KEY_Return;
|
||||||
|
}
|
||||||
|
|
||||||
buttonInfo.button = new St.Button({ style_class: 'modal-dialog-button',
|
buttonInfo.button = new St.Button({ style_class: 'modal-dialog-button',
|
||||||
reactive: true,
|
reactive: true,
|
||||||
|
Loading…
Reference in New Issue
Block a user