This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author Aivar.Annamaa
Recipients Aivar.Annamaa
Date 2014-12-06.22:09:15
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1417903756.15.0.927903848388.issue23002@psf.upfronthosting.co.za>
In-reply-to
Content
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()
History
Date User Action Args
2014-12-06 22:09:16Aivar.Annamaasetrecipients: + Aivar.Annamaa
2014-12-06 22:09:16Aivar.Annamaasetmessageid: <1417903756.15.0.927903848388.issue23002@psf.upfronthosting.co.za>
2014-12-06 22:09:16Aivar.Annamaalinkissue23002 messages
2014-12-06 22:09:15Aivar.Annamaacreate