Message323148
| Author |
vtudorache |
| Recipients |
belgort, cheryl.sabella, ned.deily, rhettinger, taleinat, terry.reedy, vtudorache, wordtech |
| Date |
2018年08月05日.12:25:14 |
| SpamBayes Score |
-1.0 |
| Marked as misclassified |
Yes |
| Message-id |
<1533471914.38.0.56676864532.issue34047@psf.upfronthosting.co.za> |
| In-reply-to |
| Content |
The solution was very simple on my Mac. In /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/idlelib/editor.py, lines 461-462 should be:
up = {EventType.MouseWheel: (event.delta >= 0) == darwin,
EventType.Button: event.num == 4}
instead of:
up = {EventType.MouseWheel: event.delta >= 0 == darwin,
EventType.Button: event.num == 4}
Does this solve the scrollbar locked down issue for anyone else? |
|