]> granicus.if.org Git - python/commitdiff
Fix SF bug # 602259, 3rd parameter for Tkinter.scan_dragto
authorNeal Norwitz <nnorwitz@gmail.com>
Fri, 10 Jan 2003 23:24:32 +0000 (23:24 +0000)
committerNeal Norwitz <nnorwitz@gmail.com>
Fri, 10 Jan 2003 23:24:32 +0000 (23:24 +0000)
Add the optional gain parameter and pass it to Tk.

Lib/lib-tk/Tkinter.py
Misc/NEWS

index 833aad551af90a9d90c1269970146ffff3c8261b..de41bdcad5d4b8474221cd190c22c72924b762fc 100644 (file)
@@ -2139,11 +2139,11 @@ class Canvas(Widget):
     def scan_mark(self, x, y):
         """Remember the current X, Y coordinates."""
         self.tk.call(self._w, 'scan', 'mark', x, y)
-    def scan_dragto(self, x, y):
-        """Adjust the view of the canvas to 10 times the
+    def scan_dragto(self, x, y, gain=10):
+        """Adjust the view of the canvas to GAIN times the
         difference between X and Y and the coordinates given in
         scan_mark."""
-        self.tk.call(self._w, 'scan', 'dragto', x, y)
+        self.tk.call(self._w, 'scan', 'dragto', x, y, gain)
     def select_adjust(self, tagOrId, index):
         """Adjust the end of the selection near the cursor of an item TAGORID to index."""
         self.tk.call(self._w, 'select', 'adjust', tagOrId, index)
index b9d108a3dbac4d817e9bc6a3561f381fb9035c82..60b20d2ca55ff4fe73da138b4e9e69771cac3093 100644 (file)
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -88,6 +88,9 @@ Library
 
 - urlparse can now parse imap:// URLs.  See SF feature request #618024.
 
+- Tkinter.Canvas.scan_dragto() provides an optional parameter to support
+  the gain value which is passed to Tk.  SF bug# 602259.
+
 Tools/Demos
 -----------