From 022cd683c4ef00ac7339eb7ed8c71af121eb2c2e Mon Sep 17 00:00:00 2001 From: Doan Nam Long Vu Date: Fri, 22 Jan 2021 09:59:46 +0100 Subject: [PATCH] panel: Remove drop down arrows from AppMenu and AggregateMenu Following #3567, the design team decided to remove the drop down arrows from both AppMenu and AggregateMenu. Fixes https://gitlab.gnome.org/GNOME/gnome-shell/-/issues/3567 Part-of: --- js/ui/panel.js | 3 --- 1 file changed, 3 deletions(-) diff --git a/js/ui/panel.js b/js/ui/panel.js index d0f3aff1f..ea29a9b48 100644 --- a/js/ui/panel.js +++ b/js/ui/panel.js @@ -187,8 +187,6 @@ var AppMenuButton = GObject.registerClass({ this._label = new St.Label({ y_expand: true, y_align: Clutter.ActorAlign.CENTER }); this._container.add_actor(this._label); - this._arrow = PopupMenu.arrowIcon(St.Side.BOTTOM); - this._container.add_actor(this._arrow); this._visible = !Main.overview.visible; if (!this._visible) @@ -701,7 +699,6 @@ class AggregateMenu extends PanelMenu.Button { this._indicators.add_child(this._rfkill); this._indicators.add_child(this._volume); this._indicators.add_child(this._power); - this._indicators.add_child(PopupMenu.arrowIcon(St.Side.BOTTOM)); this.menu.addMenuItem(this._volume.menu); this.menu.addMenuItem(this._brightness.menu);