diff --git a/mozilla/xpfe/global/resources/content/bindings/tree.xml b/mozilla/xpfe/global/resources/content/bindings/tree.xml index b6b7f7705e3..a570cec4dd7 100644 --- a/mozilla/xpfe/global/resources/content/bindings/tree.xml +++ b/mozilla/xpfe/global/resources/content/bindings/tree.xml @@ -88,8 +88,8 @@ onset="if (val) this.setAttribute('disableKeyNavigation', 'true'); else this.removeAttribute('disableKeyNavigation'); return val;"/> + true - @@ -279,7 +279,7 @@ } catch (e) {} this.selectionHead = -1; this.selectionTail = -1; - this.treeBoxObject.selection.timedSelect(c+1, 500); + this.treeBoxObject.selection.timedSelect(c+1, this._selectDelay); this.treeBoxObject.ensureRowIsVisible(c+1); ]]> @@ -373,7 +373,7 @@ i = c - f; this.treeBoxObject.scrollByPages(-1); } - this.treeBoxObject.selection.timedSelect(i, 500); + this.treeBoxObject.selection.timedSelect(i, this._selectDelay); ]]> @@ -399,7 +399,7 @@ i = lastTopRowIndex + c - f + 1; this.treeBoxObject.scrollByPages(1); } - this.treeBoxObject.selection.timedSelect(i, 500); + this.treeBoxObject.selection.timedSelect(i, this._selectDelay); ]]> @@ -526,7 +526,7 @@ return; this.selectionHead = -1; this.selectionTail = -1; - this.treeBoxObject.selection.timedSelect(0, 500); + this.treeBoxObject.selection.select(0); this.treeBoxObject.ensureRowIsVisible(0); ]]> @@ -537,7 +537,7 @@ return; this.selectionHead = -1; this.selectionTail = -1; - this.treeBoxObject.selection.timedSelect(l, 500); + this.treeBoxObject.selection.select(l); this.treeBoxObject.ensureRowIsVisible(l); ]]> @@ -628,7 +628,7 @@ if (cellText.search(this._incrementalString) == 0) { this.selectionHead = -1; this.selectionTail = -1; - this.treeBoxObject.selection.timedSelect(l, 500); + this.treeBoxObject.selection.timedSelect(l, this._selectDelay); this.treeBoxObject.ensureRowIsVisible(l); break; }