[gnome-shell] panel: Use menu items as actors



commit 58e0b80cac30c1f408330cf5aa19e715c683f8bd
Author: Marco Trevisan (Treviño) <mail 3v1n0 net>
Date:   Fri Apr 12 16:01:09 2019 -0500

    panel: Use menu items as actors
    
    All menu items are actors now, so remove all the actor property usages.
    
    https://gitlab.gnome.org/GNOME/gnome-shell/merge_requests/499

 js/ui/panel.js | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/js/ui/panel.js b/js/ui/panel.js
index 5d3d779a0..6522e9099 100644
--- a/js/ui/panel.js
+++ b/js/ui/panel.js
@@ -122,7 +122,7 @@ class AppMenu extends PopupMenu.PopupMenu {
 
     _updateDetailsVisibility() {
         let sw = this._appSystem.lookup_app('org.gnome.Software.desktop');
-        this._detailsItem.actor.visible = (sw != null);
+        this._detailsItem.visible = (sw != null);
     }
 
     isEmpty() {
@@ -160,7 +160,7 @@ class AppMenu extends PopupMenu.PopupMenu {
             });
         });
 
-        this._newWindowItem.actor.visible =
+        this._newWindowItem.visible =
             app && app.can_open_new_window() && !actions.includes('new-window');
     }
 


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