Closed jamad closed 11 months ago
For example, with tkinter, the window can stay using the following code. Are there any tips to do it with pyxel?"
import tkinter as tk root = tk.Tk() root.attributes("-topmost", True) root.mainloop()
There's no feature for that. It may be possible by getting window handle of Pyxel and setting some attribute with it.
For example, with tkinter, the window can stay using the following code. Are there any tips to do it with pyxel?"