зеркало из https://github.com/mozilla/pjs.git
Bug 522610 - [AeroPeek] Dragging tabs sometimes does not update previews order correctly, r=robarnold
This commit is contained in:
Родитель
93dacfd4f8
Коммит
be6db916d3
|
@ -473,7 +473,11 @@ TabWindow.prototype = {
|
||||||
},
|
},
|
||||||
|
|
||||||
updateTabOrdering: function () {
|
updateTabOrdering: function () {
|
||||||
for (let i = 0; i < this.previews.length; i++) {
|
// Since the internal taskbar array has not yet been updated we must force
|
||||||
|
// on it the sorting order of our local array. To do so we must walk
|
||||||
|
// the local array backwards, otherwise we would send move requests in the
|
||||||
|
// wrong order. See bug 522610 for details.
|
||||||
|
for (let i = this.previews.length - 1; i >= 0; i--) {
|
||||||
let p = this.previews[i];
|
let p = this.previews[i];
|
||||||
let next = i == this.previews.length - 1 ? null : this.previews[i+1];
|
let next = i == this.previews.length - 1 ? null : this.previews[i+1];
|
||||||
p.move(next);
|
p.move(next);
|
||||||
|
|
Загрузка…
Ссылка в новой задаче