Benedek Dévényi
Benedek Dévényi
> Curious how a test for this would be implemented? xdotool? You can position the pointer with `w.event_generate("", x=123, y=456, warp=True)` and then generate a mousewheel event with `w.event_generate("", delta=1)`...
If you want, I really appreciate it, but actually my problem with the current demo, is that it doesn't have a lot of widgets. Ideally there would be a widget...
Preferably each widget type separated in its own notebook tab (entry-like input stuff in one tab, button-stuff in another, blablabla)
Put `Style()` after `root = tkinter.Tk()` in your code.
It is not by accident. If you put it before `root = tkinter.Tk()`, tkinter will create a main window automatically for the `Style()` to operate on. Hence I said: >...
The version of tkinter provided in macOS is probably outdated. If the following code: ```python import tkinter print(tkinter.TkVersion) ``` gives anything below `8.6`, you should update it somehow. There instructions...