Update to v1.10

This commit is contained in:
Evan Su 2021-03-18 11:16:30 -04:00 committed by GitHub
parent 3e62e11a04
commit 06b2cde767
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -884,14 +884,14 @@ credits.bind("<Button-1>",lambda e:webbrowser.open(source))
# Version
versionString = tkinter.StringVar(tk)
versionString.set("v1.9")
versionString.set("v1.10")
version = tkinter.ttk.Label(
tk,
textvariable=versionString
)
version["state"] = "disabled"
version.config(background="#f5f6f7")
version.place(x=436,y=446)
version.place(x=430,y=446)
# Dummy button to remove focus from other buttons
# and prevent ugly border highlighting