ui improvement
This commit is contained in:
5
main.py
5
main.py
@@ -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__':
|
||||||
|
|||||||
Reference in New Issue
Block a user