dash: Construct the label at init

Nothing doesn't use a label, so it doesn't make sense to
lazily initialize it.

https://bugzilla.gnome.org/show_bug.cgi?id=685313
This commit is contained in:
Jasper St. Pierre 2012-10-03 02:19:36 -03:00
parent 245e43ea8c
commit 36e5ae4a25

View File

@ -48,7 +48,9 @@ const DashItemContainer = new Lang.Class({
Lang.bind(this, this._allocate));
this.actor._delegate = this;
this.label = null;
this.label = new St.Label({ style_class: 'dash-label'});
this.label.hide();
Main.layoutManager.addChrome(this.label);
this.child = null;
this._childScale = 1;
@ -103,9 +105,6 @@ const DashItemContainer = new Lang.Class({
},
showLabel: function() {
if (this.label == null)
return;
this.label.opacity = 0;
this.label.show();
@ -136,19 +135,10 @@ const DashItemContainer = new Lang.Class({
},
setLabelText: function(text) {
if (this.label == null) {
this.label = new St.Label({ style_class: 'dash-label'});
Main.layoutManager.addChrome(this.label);
this.label.hide();
}
this.label.set_text(text);
},
hideLabel: function () {
if (this.label == null)
return;
Tweener.addTween(this.label,
{ opacity: 0,
time: DASH_ITEM_LABEL_HIDE_TIME,