network: Remove overflow of VPN configurations
It's unlikely that somebody has more than five VPN connections configured, and the code is https://bugzilla.gnome.org/show_bug.cgi?id=701954
This commit is contained in:
parent
e6c239d0f3
commit
f4051e810e
@ -1423,15 +1423,7 @@ const NMVPNSection = new Lang.Class({
|
|||||||
for(let j = 0; j < this._connections.length; ++j) {
|
for(let j = 0; j < this._connections.length; ++j) {
|
||||||
let obj = this._connections[j];
|
let obj = this._connections[j];
|
||||||
obj.item = this._createConnectionItem(obj);
|
obj.item = this._createConnectionItem(obj);
|
||||||
|
this.section.addMenuItem(obj.item);
|
||||||
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);
|
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
this.section.actor.hide()
|
this.section.actor.hide()
|
||||||
|
Loading…
x
Reference in New Issue
Block a user