From e8608f2fc41c7dc6dedb8d803167e565d75da770 Mon Sep 17 00:00:00 2001 From: "blakeross%telocity.com" Date: Thu, 17 Jul 2003 22:04:11 +0000 Subject: [PATCH] Tweaking autoscroll. git-svn-id: svn://10.0.0.236/trunk@144924 18797224-902f-48f8-a5cc-f745e15eee43 --- mozilla/toolkit/content/widgets/browser.xml | 27 ++++++--------------- 1 file changed, 7 insertions(+), 20 deletions(-) diff --git a/mozilla/toolkit/content/widgets/browser.xml b/mozilla/toolkit/content/widgets/browser.xml index 33be094f4b2..390a792e258 100644 --- a/mozilla/toolkit/content/widgets/browser.xml +++ b/mozilla/toolkit/content/widgets/browser.xml @@ -450,7 +450,6 @@ null null null - false @@ -599,19 +598,13 @@ @@ -641,11 +631,8 @@ var x = this._clientX - this._startX; var y = this._clientY - this._startY; - if ((x > this._AUTOSCROLL_SNAP || x < -this._AUTOSCROLL_SNAP) || (y > this._AUTOSCROLL_SNAP || y < -this._AUTOSCROLL_SNAP)) { - this._snapOn = false; - if (!this._autoScrollMarkerImage) - this.showAutoscrollMarker(event); - } + if ((x > this._AUTOSCROLL_SNAP || x < -this._AUTOSCROLL_SNAP) || (y > this._AUTOSCROLL_SNAP || y < -this._AUTOSCROLL_SNAP)) + this._snapOn = false; } ]]>