diff --git a/js/ui/status/network.js b/js/ui/status/network.js index 594e14d59..640cfe207 100644 --- a/js/ui/status/network.js +++ b/js/ui/status/network.js @@ -1423,15 +1423,7 @@ const NMVPNSection = new Lang.Class({ for(let j = 0; j < this._connections.length; ++j) { let obj = this._connections[j]; obj.item = this._createConnectionItem(obj); - - if (j >= NUM_VISIBLE_NETWORKS) { - if (!this._overflowItem) { - this._overflowItem = new PopupMenu.PopupSubMenuMenuItem(_("Moreā€¦")); - this.section.addMenuItem(this._overflowItem); - } - this._overflowItem.menu.addMenuItem(obj.item); - } else - this.section.addMenuItem(obj.item); + this.section.addMenuItem(obj.item); } } else { this.section.actor.hide()