ui improvement

This commit is contained in:
=
2024-02-07 14:30:44 +01:00
parent ef524718fe
commit 438a2f3167

View File

@@ -4,15 +4,14 @@ from menuBar import MenuBar
from tkinter import Tk from tkinter import Tk
def main(): def main():
x = 10005 x = 1000
y = 600 y = 600
root = Tk() root = Tk()
ad = AztecDiamond(x, y) ad = AztecDiamond(x, y)
tracker = ResizeTracker(ad) tracker = ResizeTracker(ad)
root.geometry(str(x)+"x"+str(y)+"+300+300")
menubar = MenuBar(root, ad) menubar = MenuBar(root, ad)
root.geometry(str(x)+"x"+str(y)+"+300+300")
root.mainloop() root.mainloop()
if __name__ == '__main__': if __name__ == '__main__':