From 5c31ef6ae2c7d36bc04dee10eb15efce815314af Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCllner?= Date: Tue, 9 Feb 2021 22:01:45 +0100 Subject: [PATCH] dash: Reindent some more code Again we're about to touch it. https://gitlab.gnome.org/Teams/Design/os-mockups/-/issues/89 Part-of: --- js/ui/dash.js | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/js/ui/dash.js b/js/ui/dash.js index 52b07a51c..efd855787 100644 --- a/js/ui/dash.js +++ b/js/ui/dash.js @@ -57,13 +57,15 @@ class DashIcon extends AppDisplay.AppIcon { var DashItemContainer = GObject.registerClass( class DashItemContainer extends St.Widget { _init() { - super._init({ style_class: 'dash-item-container', - pivot_point: new Graphene.Point({ x: .5, y: .5 }), - scale_x: 0, - scale_y: 0, - opacity: 0, - x_expand: true, - x_align: Clutter.ActorAlign.CENTER }); + super._init({ + style_class: 'dash-item-container', + pivot_point: new Graphene.Point({ x: .5, y: .5 }), + scale_x: 0, + scale_y: 0, + opacity: 0, + x_expand: true, + x_align: Clutter.ActorAlign.CENTER, + }); this._labelText = ""; this.label = new St.Label({ style_class: 'dash-label' });