Skip to content

Commit

Permalink
New Update
Browse files Browse the repository at this point in the history
  • Loading branch information
Vahab-Programmer authored Nov 26, 2024
1 parent adc620e commit 5e9dd26
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions main.pyw
Original file line number Diff line number Diff line change
Expand Up @@ -118,18 +118,18 @@ Spinbox(frame1,textvariable=angle,from_=60,to=179).place(x=80,y=60)
Entry(frame1,textvariable=out_angle,state="readonly").place(x=80,y=85)
Spinbox(frame2,textvariable=min_num,from_=1,to=maxsize).place(x=80,y=65)
Spinbox(frame2,textvariable=max_num,from_=1,to=maxsize).place(x=295,y=65)
e1=Entry(frame2,textvariable=numbers,width=76)
e1=Entry(frame2,textvariable=numbers,width=77,state="readonly")
s1=Scrollbar(frame2,command=e1.xview,orient="horizontal")
e1.config(xscrollcommand=s1.set)
e1.place(x=10,y=15)
s1.place(x=10,y=33,relwidth=0.955)
e1.place(x=8,y=15)
s1.place(x=10,y=33,relwidth=0.96)
Message(frame1,text="sides",font=f,width=99).place(x=18,y=7)
Message(frame1,text="angles",font=f,width=99).place(x=13,y=29)
Message(frame1,text="angle",font=f,width=99).place(x=18,y=55)
Message(frame1,text="out angle",font=("tahoma",10),width=99).place(x=12,y=82)
Message(frame2,text="maximum:",font=("tahoma",10),width=99).place(x=220,y=62)
Message(frame2,text="minimum:",font=("tahoma",10),width=99).place(x=8,y=62)
Message(root,text="V1.1 Programmed By Vahab Goudarzi GithubPage:http://Github.com/vahab-programmer",font=("tahoma",8),width=999).place(x=28,y=360)
Message(root,text="V1.2 Programmed By Vahab Goudarzi GithubPage:http://Github.com/vahab-programmer",font=("tahoma",8),width=999).place(x=28,y=360)
pointer.forward(1)
canvas.delete("all")
root.mainloop()

0 comments on commit 5e9dd26

Please sign in to comment.