network: Remove UNKNOWN security type
It's unused. https://bugzilla.gnome.org/show_bug.cgi?id=698918
This commit is contained in:
parent
dbb39d366e
commit
e0b8ad7911
@ -27,7 +27,6 @@ const NMConnectionCategory = {
|
||||
};
|
||||
|
||||
const NMAccessPointSecurity = {
|
||||
UNKNOWN: 0,
|
||||
NONE: 1,
|
||||
WEP: 2,
|
||||
WPA_PSK: 3,
|
||||
@ -109,8 +108,7 @@ const NMNetworkMenuItem = new Lang.Class({
|
||||
this._icons.add_actor(this._signalIcon);
|
||||
|
||||
this._secureIcon = new St.Icon({ style_class: 'popup-menu-icon' });
|
||||
if (this.bestAP._secType != NMAccessPointSecurity.UNKNOWN &&
|
||||
this.bestAP._secType != NMAccessPointSecurity.NONE)
|
||||
if (this.bestAP._secType != NMAccessPointSecurity.NONE)
|
||||
this._secureIcon.icon_name = 'network-wireless-encrypted-symbolic';
|
||||
this._icons.add_actor(this._secureIcon);
|
||||
},
|
||||
|
Loading…
Reference in New Issue
Block a user