[gnome-shell] runDialog: Use new indentation style



commit 26b78e7d77fbb1aa40303e6e5c866fa6797a402a
Author: Jonas Dreßler <verdre v0yd nl>
Date:   Mon Jan 27 16:31:51 2020 +0100

    runDialog: Use new indentation style
    
    https://gitlab.gnome.org/GNOME/gnome-shell/merge_requests/960

 js/ui/runDialog.js | 40 ++++++++++++++++++++++++----------------
 1 file changed, 24 insertions(+), 16 deletions(-)
---
diff --git a/js/ui/runDialog.js b/js/ui/runDialog.js
index 2a65b2b801..af500b0af0 100644
--- a/js/ui/runDialog.js
+++ b/js/ui/runDialog.js
@@ -23,8 +23,10 @@ var DIALOG_GROW_TIME = 100;
 var RunDialog = GObject.registerClass(
 class RunDialog extends ModalDialog.ModalDialog {
     _init() {
-        super._init({ styleClass: 'run-dialog',
-                      destroyOnClose: false });
+        super._init({
+            styleClass: 'run-dialog',
+            destroyOnClose: false,
+        });
 
         this._lockdownSettings = new Gio.Settings({ schema_id: LOCKDOWN_SCHEMA });
         this._terminalSettings = new Gio.Settings({ schema_id: TERMINAL_SCHEMA });
@@ -54,13 +56,16 @@ class RunDialog extends ModalDialog.ModalDialog {
             },
         };
 
-        let label = new St.Label({ style_class: 'run-dialog-label',
-                                   text: _("Enter a Command") });
-
+        let label = new St.Label({
+            style_class: 'run-dialog-label',
+            text: _("Enter a Command"),
+        });
         this.contentLayout.add_child(label);
 
-        let entry = new St.Entry({ style_class: 'run-dialog-entry',
-                                   can_focus: true });
+        let entry = new St.Entry({
+            style_class: 'run-dialog-entry',
+            can_focus: true,
+        });
         ShellEntry.addContextMenu(entry);
 
         entry.label_actor = label;
@@ -73,11 +78,12 @@ class RunDialog extends ModalDialog.ModalDialog {
 
         this.contentLayout.add_child(this._errorBox);
 
-        let errorIcon = new St.Icon({ icon_name: 'dialog-error-symbolic',
-                                      icon_size: 24,
-                                      style_class: 'run-dialog-error-icon',
-                                      y_align: Clutter.ActorAlign.CENTER });
-
+        let errorIcon = new St.Icon({
+            icon_name: 'dialog-error-symbolic',
+            icon_size: 24,
+            style_class: 'run-dialog-error-icon',
+            y_align: Clutter.ActorAlign.CENTER,
+        });
         this._errorBox.add_child(errorIcon);
 
         this._commandError = false;
@@ -100,12 +106,14 @@ class RunDialog extends ModalDialog.ModalDialog {
 
         this._pathCompleter = new Gio.FilenameCompleter();
 
-        this._history = new History.HistoryManager({ gsettingsKey: HISTORY_KEY,
-                                                     entry: this._entryText });
+        this._history = new History.HistoryManager({
+            gsettingsKey: HISTORY_KEY,
+            entry: this._entryText,
+        });
         this._entryText.connect('activate', o => {
             this.popModal();
             this._run(o.get_text(),
-                      Clutter.get_current_event().get_state() & Clutter.ModifierType.CONTROL_MASK);
+                Clutter.get_current_event().get_state() & Clutter.ModifierType.CONTROL_MASK);
             if (!this._commandError ||
                 !this.pushModal())
                 this.close();
@@ -216,7 +224,7 @@ class RunDialog extends ModalDialog.ModalDialog {
                     let file = Gio.file_new_for_path(path);
                     try {
                         Gio.app_info_launch_default_for_uri(file.get_uri(),
-                                                            global.create_app_launch_context(0, -1));
+                            global.create_app_launch_context(0, -1));
                     } catch (err) {
                         // The exception from gjs contains an error string like:
                         //     Error invoking Gio.app_info_launch_default_for_uri: No application


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