From a7996034ed95b5ba68c00fe53553d9a3943765fd Mon Sep 17 00:00:00 2001 From: Francis Lachapelle Date: Thu, 12 Mar 2009 21:49:15 +0000 Subject: [PATCH] Fix for bug #3292 Monotone-Parent: 59c4b0746cb2313cef5fff230f8824a9d48a2ee1 Monotone-Revision: 070042ab40f01de7dd4a39f28e1a9a445232baf0 Monotone-Author: flachapelle@inverse.ca Monotone-Date: 2009-03-12T21:49:15 Monotone-Branch: ca.inverse.sogo --- UI/WebServerResources/SOGoDragHandles.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/UI/WebServerResources/SOGoDragHandles.js b/UI/WebServerResources/SOGoDragHandles.js index 2633a57b1..081f70038 100644 --- a/UI/WebServerResources/SOGoDragHandles.js +++ b/UI/WebServerResources/SOGoDragHandles.js @@ -71,7 +71,7 @@ var SOGoDragHandlesInterface = { this.origY = this.offsetTop; this.origUpper = this.upperBlock.offsetHeight; var pointY = Event.pointerY(event); - if (pointY <= this.topMargin) this.delta = this.topMargin; + if (pointY < this.topMargin) this.delta = this.topMargin; else this.delta = pointY - this.offsetTop - 5; this.origLower = this.lowerBlock.offsetTop - 5; document.body.setStyle({ cursor: "n-resize" });