From 52f85c9465caef4202b6aee763e9a6c7289302fc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20M=C3=BCllner?= Date: Mon, 19 Aug 2019 20:56:36 +0200 Subject: [PATCH] system: Properly separate statements Whoops, that's some typo that sneaked into commit 9c3b3320f8 ... https://gitlab.gnome.org/GNOME/gnome-shell/merge_requests/710 --- js/ui/status/system.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/ui/status/system.js b/js/ui/status/system.js index f18a8e270..e353e8fba 100644 --- a/js/ui/status/system.js +++ b/js/ui/status/system.js @@ -244,7 +244,7 @@ var Indicator = class extends PanelMenu.SystemIndicator { this._orientationLockAction = this._createActionButton('', _("Orientation Lock")); this._orientationLockAction.connect('clicked', () => { - this.menu.itemActivated(BoxPointer.PopupAnimation.NONE), + this.menu.itemActivated(BoxPointer.PopupAnimation.NONE); this._systemActions.activateLockOrientation(); }); item.add(this._orientationLockAction, { expand: true, x_fill: false });