appDisplay: Fix indicator animation position

The original position was calculated with the stage and the
transformed position of the indicator when mapped. The values
were wrong on some situations, so lets calculate the position
based on the dots width.

https://bugzilla.gnome.org/show_bug.cgi?id=707580
This commit is contained in:
Carlos Soriano 2013-09-06 00:39:07 +02:00
parent 72f0a48fac
commit 7c78e1fbf5

View File

@ -233,13 +233,11 @@ const PageIndicators = new Lang.Class({
let timePerChild = INDICATORS_ANIMATION_TIME / this._nPages;
let delay = INDICATORS_ANIMATION_DELAY_PERCENTAGE / 100 * timePerChild;
let [stageX, ] = children[0].get_transformed_position();
let offset;
let monitor = Main.layoutManager.primaryMonitor;
if (Clutter.get_default_text_direction() == Clutter.TextDirection.RTL)
offset = monitor.x - stageX - children[0].width;
if (this.actor.get_text_direction() == Clutter.TextDirection.RTL)
offset = -children[0].width;
else
offset = monitor.x + monitor.width - stageX;
offset = children[0].width;
for (let i = 0; i < this._nPages; i++) {
children[i].translation_x = offset;