keyboard: Reindent timeout handlers

We are going to touch some of the code, so take that opportunity
to move them to the new indentation style.

https://gitlab.gnome.org/GNOME/gnome-shell/issues/1976
This commit is contained in:
Florian Müllner 2019-12-04 20:40:07 +01:00
parent 8c4d07ba92
commit 9b4780fa1d

View File

@ -316,23 +316,23 @@ var Key = GObject.registerClass({
if (key == this.key) { if (key == this.key) {
this._pressTimeoutId = GLib.timeout_add(GLib.PRIORITY_DEFAULT, this._pressTimeoutId = GLib.timeout_add(GLib.PRIORITY_DEFAULT,
KEY_LONG_PRESS_TIME, KEY_LONG_PRESS_TIME,
() => { () => {
this._longPress = true; this._longPress = true;
this._pressTimeoutId = 0; this._pressTimeoutId = 0;
this.emit('long-press'); this.emit('long-press');
if (this._extended_keys.length > 0) { if (this._extended_keys.length > 0) {
this._touchPressed = false; this._touchPressed = false;
this.keyButton.set_hover(false); this.keyButton.set_hover(false);
this.keyButton.fake_release(); this.keyButton.fake_release();
this._ensureExtendedKeysPopup(); this._ensureExtendedKeysPopup();
this._showSubkeys(); this._showSubkeys();
} }
return GLib.SOURCE_REMOVE; return GLib.SOURCE_REMOVE;
}); });
} }
} }
@ -1682,12 +1682,12 @@ class Keyboard extends St.BoxLayout {
this._clearKeyboardRestTimer(); this._clearKeyboardRestTimer();
this._keyboardRestingId = GLib.timeout_add(GLib.PRIORITY_DEFAULT, this._keyboardRestingId = GLib.timeout_add(GLib.PRIORITY_DEFAULT,
KEYBOARD_REST_TIME, KEYBOARD_REST_TIME,
() => { () => {
this._clearKeyboardRestTimer(); this._clearKeyboardRestTimer();
this._open(monitor); this._open(monitor);
return GLib.SOURCE_REMOVE; return GLib.SOURCE_REMOVE;
}); });
GLib.Source.set_name_by_id(this._keyboardRestingId, '[gnome-shell] this._clearKeyboardRestTimer'); GLib.Source.set_name_by_id(this._keyboardRestingId, '[gnome-shell] this._clearKeyboardRestTimer');
} }
@ -1716,12 +1716,12 @@ class Keyboard extends St.BoxLayout {
this._clearKeyboardRestTimer(); this._clearKeyboardRestTimer();
this._keyboardRestingId = GLib.timeout_add(GLib.PRIORITY_DEFAULT, this._keyboardRestingId = GLib.timeout_add(GLib.PRIORITY_DEFAULT,
KEYBOARD_REST_TIME, KEYBOARD_REST_TIME,
() => { () => {
this._clearKeyboardRestTimer(); this._clearKeyboardRestTimer();
this._close(); this._close();
return GLib.SOURCE_REMOVE; return GLib.SOURCE_REMOVE;
}); });
GLib.Source.set_name_by_id(this._keyboardRestingId, '[gnome-shell] this._clearKeyboardRestTimer'); GLib.Source.set_name_by_id(this._keyboardRestingId, '[gnome-shell] this._clearKeyboardRestTimer');
} }