From 58e0b80cac30c1f408330cf5aa19e715c683f8bd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Marco=20Trevisan=20=28Trevi=C3=B1o=29?= Date: Fri, 12 Apr 2019 16:01:09 -0500 Subject: [PATCH] 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'); }