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? |
|
| History | |||
|---|---|---|---|
| Date | User | Action | Args |
| 2018-08-05 12:25:14 | vtudorache | set | recipients: + vtudorache, rhettinger, terry.reedy, taleinat, wordtech, ned.deily, cheryl.sabella, belgort |
| 2018-08-05 12:25:14 | vtudorache | set | messageid: <1533471914.38.0.56676864532.issue34047@psf.upfronthosting.co.za> |
| 2018-08-05 12:25:14 | vtudorache | link | issue34047 messages |
| 2018-08-05 12:25:14 | vtudorache | create | |