trying to centre tea cup

This commit is contained in:
Olaf Leidinger 2013-11-03 13:48:07 +01:00
parent 8fc62efb59
commit 3fee302396

View File

@ -41,7 +41,9 @@ const TeaTimeFullscreenNotification = new Lang.Class({
// this spans the whole monitor and contains // this spans the whole monitor and contains
// the actual layout, which it displays in // the actual layout, which it displays in
// the center of itself // the center of itself
this._bin = new St.Bin();
// TODO: trying to centre the tea cup... doesn't work
this._bin = new St.Bin({ x_align: St.Align.MIDDLE, y_align: St.Align.MIDDLE});
this._monitorConstraint = new Layout.MonitorConstraint(); this._monitorConstraint = new Layout.MonitorConstraint();
this._bin.add_constraint(this._monitorConstraint); this._bin.add_constraint(this._monitorConstraint);
Main.uiGroup.add_actor(this._bin); Main.uiGroup.add_actor(this._bin);
@ -73,7 +75,7 @@ const TeaTimeFullscreenNotification = new Lang.Class({
this._texture = new Clutter.Texture({ reactive: true, keep_aspect_ratio: true }); this._texture = new Clutter.Texture({ reactive: true, keep_aspect_ratio: true });
this._texture.connect("button-release-event", Lang.bind(this, this.hide)); this._texture.connect("button-release-event", Lang.bind(this, this.hide));
this._layout.add_child(this._texture); this._layout.add_child(this._texture);
this._timeline = new Clutter.Timeline({ duration: 2000, repeat_count: -1, progress_mode: Clutter.AnimationMode.LINEAR }); this._timeline = new Clutter.Timeline({ duration: 2000, repeat_count: -1, progress_mode: Clutter.AnimationMode.LINEAR });
this._timeline.connect("new-frame", Lang.bind(this, this._newFrame)); this._timeline.connect("new-frame", Lang.bind(this, this._newFrame));