[New-bugs-announce] [issue23002] Trackpad scrolling in tkinter doesn't work on some laptops

Aivar Annamaa report at bugs.python.org
Sat Dec 6 23:09:16 CET 2014


New submission from Aivar Annamaa:

Here's a simple tkinter program, where text can be scrolled by mouse wheel, and by trackpads of some laptops (Macbook Pro, Dell Latitude E5430), but not by trackpads of some other laptops (Lenovo T420).


from tkinter import Tk
from tkinter import scrolledtext
window = Tk()
text = scrolledtext.ScrolledText(window)
text.grid()
window.mainloop()

----------
components: Tkinter
messages: 232253
nosy: Aivar.Annamaa
priority: normal
severity: normal
status: open
title: Trackpad scrolling in tkinter doesn't work on some laptops
versions: Python 3.4

_______________________________________
Python tracker <report at bugs.python.org>
<http://bugs.python.org/issue23002>
_______________________________________


More information about the New-bugs-announce mailing list