power-status: Remove tooltip

Status icons should not have tooltips according to the design.
This commit is contained in:
Florian Müllner 2010-11-17 20:05:28 +01:00
parent 5f1a2e3cec
commit deb7e7317e

View File

@ -50,7 +50,6 @@ const PowerManagerInterface = {
],
properties: [
{ name: 'Icon', signature: 's', access: 'read' },
{ name: 'Tooltip', signature: 's', access: 'read' },
]
};
let PowerManagerProxy = DBus.makeProxyClass(PowerManagerInterface);
@ -159,9 +158,6 @@ Indicator.prototype = {
this.actor.hide();
}
}));
this._proxy.GetRemote('Tooltip', Lang.bind(this, function(tooltip) {
this.setTooltip(tooltip);
}));
this._readPrimaryDevice();
this._readOtherDevices();
},