[gnome-shell] keyboard: Reindent timeout handlers



commit 9b4780fa1d64b37cd5ae2a7fd6d270070e31aed4
Author: Florian Müllner <fmuellner gnome org>
Date:   Wed Dec 4 20:40:07 2019 +0100

    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

 js/ui/keyboard.js | 58 +++++++++++++++++++++++++++----------------------------
 1 file changed, 29 insertions(+), 29 deletions(-)
---
diff --git a/js/ui/keyboard.js b/js/ui/keyboard.js
index 4d153bbf27..708a52fb65 100644
--- a/js/ui/keyboard.js
+++ b/js/ui/keyboard.js
@@ -316,23 +316,23 @@ var Key = GObject.registerClass({
 
         if (key == this.key) {
             this._pressTimeoutId = GLib.timeout_add(GLib.PRIORITY_DEFAULT,
-                                                    KEY_LONG_PRESS_TIME,
-                                                    () => {
-                                                        this._longPress = true;
-                                                        this._pressTimeoutId = 0;
-
-                                                        this.emit('long-press');
-
-                                                        if (this._extended_keys.length > 0) {
-                                                            this._touchPressed = false;
-                                                            this.keyButton.set_hover(false);
-                                                            this.keyButton.fake_release();
-                                                            this._ensureExtendedKeysPopup();
-                                                            this._showSubkeys();
-                                                        }
-
-                                                        return GLib.SOURCE_REMOVE;
-                                                    });
+                KEY_LONG_PRESS_TIME,
+                () => {
+                    this._longPress = true;
+                    this._pressTimeoutId = 0;
+
+                    this.emit('long-press');
+
+                    if (this._extended_keys.length > 0) {
+                        this._touchPressed = false;
+                        this.keyButton.set_hover(false);
+                        this.keyButton.fake_release();
+                        this._ensureExtendedKeysPopup();
+                        this._showSubkeys();
+                    }
+
+                    return GLib.SOURCE_REMOVE;
+                });
         }
     }
 
@@ -1682,12 +1682,12 @@ class Keyboard extends St.BoxLayout {
 
         this._clearKeyboardRestTimer();
         this._keyboardRestingId = GLib.timeout_add(GLib.PRIORITY_DEFAULT,
-                                                   KEYBOARD_REST_TIME,
-                                                   () => {
-                                                       this._clearKeyboardRestTimer();
-                                                       this._open(monitor);
-                                                       return GLib.SOURCE_REMOVE;
-                                                   });
+            KEYBOARD_REST_TIME,
+            () => {
+                this._clearKeyboardRestTimer();
+                this._open(monitor);
+                return GLib.SOURCE_REMOVE;
+            });
         GLib.Source.set_name_by_id(this._keyboardRestingId, '[gnome-shell] this._clearKeyboardRestTimer');
     }
 
@@ -1716,12 +1716,12 @@ class Keyboard extends St.BoxLayout {
 
         this._clearKeyboardRestTimer();
         this._keyboardRestingId = GLib.timeout_add(GLib.PRIORITY_DEFAULT,
-                                                   KEYBOARD_REST_TIME,
-                                                   () => {
-                                                       this._clearKeyboardRestTimer();
-                                                       this._close();
-                                                       return GLib.SOURCE_REMOVE;
-                                                   });
+            KEYBOARD_REST_TIME,
+            () => {
+                this._clearKeyboardRestTimer();
+                this._close();
+                return GLib.SOURCE_REMOVE;
+            });
         GLib.Source.set_name_by_id(this._keyboardRestingId, '[gnome-shell] this._clearKeyboardRestTimer');
     }
 


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]