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
077059e0
Commit
077059e0
authored
Aug 10, 2018
by
Tal Einat
Committed by
GitHub
Aug 10, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
bpo-34047: IDLE: fix mousewheel scrolling direction on macOS (GH-8678)
parent
b92c526e
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
6 deletions
+18
-6
Lib/idlelib/editor.py
Lib/idlelib/editor.py
+17
-6
Misc/NEWS.d/next/IDLE/2018-08-05-15-49-55.bpo-34047.LGKsIm.rst
...NEWS.d/next/IDLE/2018-08-05-15-49-55.bpo-34047.LGKsIm.rst
+1
-0
No files found.
Lib/idlelib/editor.py
View file @
077059e0
...
@@ -457,12 +457,19 @@ class EditorWindow(object):
...
@@ -457,12 +457,19 @@ class EditorWindow(object):
return
'break'
return
'break'
def
mousescroll
(
self
,
event
):
def
mousescroll
(
self
,
event
):
"Handle scroll wheel."
"""Handle scrollwheel event.
up
=
{
EventType
.
MouseWheel
:
event
.
delta
>=
0
==
darwin
,
For wheel up, event.delta = 120*n on Windows, -1*n on darwin,
where n can be > 1 if one scrolls fast. Flicking the wheel
generates up to maybe 20 events with n up to 10 or more 1.
Macs use wheel down (delta = 1*n) to scroll up, so positive
delta means to scroll up on both systems.
X-11 sends Control-Button-4 event instead.
"""
up
=
{
EventType
.
MouseWheel
:
event
.
delta
>
0
,
EventType
.
Button
:
event
.
num
==
4
}
EventType
.
Button
:
event
.
num
==
4
}
lines
=
5
lines
=
-
5
if
up
[
event
.
type
]
else
5
if
up
[
event
.
type
]:
lines
=
-
lines
self
.
text
.
yview_scroll
(
lines
,
'units'
)
self
.
text
.
yview_scroll
(
lines
,
'units'
)
return
'break'
return
'break'
...
@@ -1701,7 +1708,11 @@ def _editor_window(parent): # htest #
...
@@ -1701,7 +1708,11 @@ def _editor_window(parent): # htest #
filename = None
filename = None
macosx.setupApp(root, None)
macosx.setupApp(root, None)
edit = EditorWindow(root=root, filename=filename)
edit = EditorWindow(root=root, filename=filename)
edit.text.bind("<<close-all-windows>>", edit.close_event)
text = edit.text
text['
height
'] = 10
for i in range(20):
text.insert('
insert
', '
'*i + str(i) + '
\
n
')
# text.bind("<<close-all-windows>>", edit.close_event)
# Does not stop error, neither does following
# Does not stop error, neither does following
# edit.text.bind("<<close-window>>", edit.close_event)
# edit.text.bind("<<close-window>>", edit.close_event)
...
...
Misc/NEWS.d/next/IDLE/2018-08-05-15-49-55.bpo-34047.LGKsIm.rst
0 → 100644
View file @
077059e0
Fixed mousewheel scrolling direction on macOS.
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