Inertial scrolling in Mac OS X with Tkinter and Python

前端 未结 3 1445
有刺的猬
有刺的猬 2021-01-04 05:54

I am working on a Python 3.3 project that uses Tkinter as a Window manager. I have mouse scroll wheel events set up for a canvas. The scrolling works in Windows 7, 8, and Ub

3条回答
  •  心在旅途
    2021-01-04 06:04

    These errors can be caught:

    while True:
        try:
            root.mainloop()
            break
        except UnicodeDecodeError:
            pass
    

    This seems to work perfectly, even scrolling inertially, and does not require any installation/upgrading.

提交回复
热议问题