[SCM] WebKit Debian packaging branch, debian/unstable, updated. debian/1.1.15-1-40151-g37bb677
sullivan
sullivan at 268f45cc-cd09-0410-ab3c-d52691b4dbfc
Sat Sep 26 06:49:48 UTC 2009
The following commit has been merged in the debian/unstable branch:
commit 4370b99aa49f7d97ee16f2bb330ae421f259066c
Author: sullivan <sullivan at 268f45cc-cd09-0410-ab3c-d52691b4dbfc>
Date: Tue Oct 15 20:01:54 2002 +0000
- fixed 3075777 -- hysteresis for dragging links on web pages
is still too large
* WebView.subproj/WebHTMLView.m: changed hysteresis constants;
added comment.
git-svn-id: http://svn.webkit.org/repository/webkit/trunk@2331 268f45cc-cd09-0410-ab3c-d52691b4dbfc
diff --git a/WebKit/ChangeLog b/WebKit/ChangeLog
index 641c26f..3e624fb 100644
--- a/WebKit/ChangeLog
+++ b/WebKit/ChangeLog
@@ -1,3 +1,11 @@
+2002-10-15 John Sullivan <sullivan at apple.com>
+
+ - fixed 3075777 -- hysteresis for dragging links on web pages
+ is still too large
+
+ * WebView.subproj/WebHTMLView.m: changed hysteresis constants;
+ added comment.
+
2002-10-15 Darin Adler <darin at apple.com>
Fix problem where timer was lasting after window was closed.
diff --git a/WebKit/ChangeLog-2002-12-03 b/WebKit/ChangeLog-2002-12-03
index 641c26f..3e624fb 100644
--- a/WebKit/ChangeLog-2002-12-03
+++ b/WebKit/ChangeLog-2002-12-03
@@ -1,3 +1,11 @@
+2002-10-15 John Sullivan <sullivan at apple.com>
+
+ - fixed 3075777 -- hysteresis for dragging links on web pages
+ is still too large
+
+ * WebView.subproj/WebHTMLView.m: changed hysteresis constants;
+ added comment.
+
2002-10-15 Darin Adler <darin at apple.com>
Fix problem where timer was lasting after window was closed.
diff --git a/WebKit/WebView.subproj/WebHTMLView.m b/WebKit/WebView.subproj/WebHTMLView.m
index 8834a6b..b1368d6 100644
--- a/WebKit/WebView.subproj/WebHTMLView.m
+++ b/WebKit/WebView.subproj/WebHTMLView.m
@@ -30,8 +30,10 @@
// Needed for the mouse moved notification.
#import <AppKit/NSResponder_Private.h>
-#define DragStartXHysteresis 5.0
-#define DragStartYHysteresis 5.0
+// These are a little larger than typical because dragging links is a fairly
+// advanced feature that can confuse non-power-users
+#define DragStartXHysteresis 10.0
+#define DragStartYHysteresis 10.0
#define DRAG_LABEL_BORDER_X 4.0
#define DRAG_LABEL_BORDER_Y 2.0
--
WebKit Debian packaging
More information about the Pkg-webkit-commits
mailing list