[gnome-shell/wip/aggregate-menu: 37/51] network: Remove the enable networking item



commit 58522ba9bf81ea7e7552ed4686f94602333fd675
Author: Jasper St. Pierre <jstpierre mecheye net>
Date:   Mon Apr 29 15:35:14 2013 -0400

    network: Remove the enable networking item

 js/ui/status/network.js |   13 -------------
 1 files changed, 0 insertions(+), 13 deletions(-)
---
diff --git a/js/ui/status/network.js b/js/ui/status/network.js
index f8382b6..9312389 100644
--- a/js/ui/status/network.js
+++ b/js/ui/status/network.js
@@ -1389,15 +1389,6 @@ const NMApplet = new Lang.Class({
         if (!this._client || !this._settings)
             return;
 
-        this._statusSection = new PopupMenu.PopupMenuSection();
-        this._statusItem = new PopupMenu.PopupMenuItem('', { reactive: false });
-        this._statusSection.addMenuItem(this._statusItem);
-        this._statusSection.addAction(_("Enable networking"), Lang.bind(this, function() {
-            this._client.networking_enabled = true;
-        }));
-        this._statusSection.actor.hide();
-        this.menu.addMenuItem(this._statusSection);
-
         this._activeConnections = [ ];
         this._connections = [ ];
 
@@ -1780,8 +1771,6 @@ const NMApplet = new Lang.Class({
             return;
         this._devicesHidden = false;
 
-        this._statusSection.actor.hide();
-
         for (let category in this._devices)
             this._devices[category].section.actor.show();
     },
@@ -1793,8 +1782,6 @@ const NMApplet = new Lang.Class({
         if (!this._client.networking_enabled) {
             this.setIcon('network-offline-symbolic');
             this._hideDevices();
-            this._statusItem.label.text = _("Networking is disabled");
-            this._statusSection.actor.show();
             return;
         }
 


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]