diff --git a/main.py b/main.py index 3a44d36..3841d19 100644 --- a/main.py +++ b/main.py @@ -4,15 +4,14 @@ from menuBar import MenuBar from tkinter import Tk def main(): - x = 10005 + x = 1000 y = 600 root = Tk() ad = AztecDiamond(x, y) tracker = ResizeTracker(ad) - root.geometry(str(x)+"x"+str(y)+"+300+300") - menubar = MenuBar(root, ad) + root.geometry(str(x)+"x"+str(y)+"+300+300") root.mainloop() if __name__ == '__main__':