Skip to content

Commit

Permalink
Use simpler fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Gr3q committed Jul 24, 2023
1 parent 2faa38d commit c037712
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion js/ui/panel.js
Original file line number Diff line number Diff line change
Expand Up @@ -3845,7 +3845,7 @@ Panel.prototype = {
},

getIsVisible: function() {
return this._shouldShow;
return !this._hidden;
},

resetDNDZones: function() {
Expand Down
1 change: 1 addition & 0 deletions js/ui/popupMenu.js
Original file line number Diff line number Diff line change
Expand Up @@ -2428,6 +2428,7 @@ var PopupMenu = class PopupMenu extends PopupMenuBase {
this.actor.show();
}

Main.panelManager.updatePanelsVisibility();
this.emit('open-state-changed', true);
}

Expand Down

0 comments on commit c037712

Please sign in to comment.