[gnome-shell] status/dwellClick: Remove menu arrow



commit add6dfe2e4ccd2f24301ee2ed6273a9f7be0be5d
Author: Florian Müllner <fmuellner gnome org>
Date:   Mon Feb 1 12:15:00 2021 +0100

    status/dwellClick: Remove menu arrow
    
    This was missed in commit db9a008.
    
    Part-of: <https://gitlab.gnome.org/GNOME/gnome-shell/-/merge_requests/1618>

 js/ui/status/dwellClick.js | 7 +------
 1 file changed, 1 insertion(+), 6 deletions(-)
---
diff --git a/js/ui/status/dwellClick.js b/js/ui/status/dwellClick.js
index ce13f73bae..4b1d8a2c13 100644
--- a/js/ui/status/dwellClick.js
+++ b/js/ui/status/dwellClick.js
@@ -2,7 +2,6 @@
 const { Clutter, Gio, GLib, GObject, St } = imports.gi;
 
 const PanelMenu = imports.ui.panelMenu;
-const PopupMenu = imports.ui.popupMenu;
 
 const MOUSE_A11Y_SCHEMA       = 'org.gnome.desktop.a11y.mouse';
 const KEY_DWELL_CLICK_ENABLED = 'dwell-click-enabled';
@@ -36,13 +35,9 @@ class DwellClickIndicator extends PanelMenu.Button {
     _init() {
         super._init(0.5, _("Dwell Click"));
 
-        this._hbox = new St.BoxLayout({ style_class: 'panel-status-menu-box' });
         this._icon = new St.Icon({ style_class: 'system-status-icon',
                                    icon_name: 'pointer-primary-click-symbolic' });
-        this._hbox.add_child(this._icon);
-        this._hbox.add_child(PopupMenu.arrowIcon(St.Side.BOTTOM));
-
-        this.add_child(this._hbox);
+        this.add_child(this._icon);
 
         this._a11ySettings = new Gio.Settings({ schema_id: MOUSE_A11Y_SCHEMA });
         this._a11ySettings.connect('changed::%s'.format(KEY_DWELL_CLICK_ENABLED), 
this._syncMenuVisibility.bind(this));


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