Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
e502c7c2
Commit
e502c7c2
authored
Jan 10, 2003
by
Neal Norwitz
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix SF bug # 602259, 3rd parameter for Tkinter.scan_dragto
Add the optional gain parameter and pass it to Tk.
parent
d4560d90
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
3 deletions
+6
-3
Lib/lib-tk/Tkinter.py
Lib/lib-tk/Tkinter.py
+3
-3
Misc/NEWS
Misc/NEWS
+3
-0
No files found.
Lib/lib-tk/Tkinter.py
View file @
e502c7c2
...
...
@@ -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
)
...
...
Misc/NEWS
View file @
e502c7c2
...
...
@@ -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
-----------
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment