implemented overwrite_preferred_drawing_method parameter in DrawEngine

This commit is contained in:
TomSchimansky
2022-05-27 00:30:06 +02:00
parent 8a87b6f926
commit 9bd55cc159
3 changed files with 9 additions and 5 deletions

View File

@@ -23,6 +23,7 @@ class App(customtkinter.CTk):
self.geometry(f"{App.WIDTH}x{App.HEIGHT}")
self.minsize(App.WIDTH, App.HEIGHT)
self.maxsize(App.WIDTH, App.HEIGHT)
self.resizable(False, False)
self.protocol("WM_DELETE_WINDOW", self.on_closing)