diff options
author | Jesusaves <cpntb1@ymail.com> | 2024-02-06 10:26:30 -0300 |
---|---|---|
committer | Jesusaves <cpntb1@ymail.com> | 2024-02-06 10:26:30 -0300 |
commit | cce7aa059e83afea0a2a08db94e919a3def49224 (patch) | |
tree | 97daf5bb73ae43cddebe7b183698b3bfdef23e8b | |
parent | aacbac14e36d26badd1a7aa91abb7dfbeff2ffa6 (diff) | |
download | tkinter-cce7aa059e83afea0a2a08db94e919a3def49224.tar.gz tkinter-cce7aa059e83afea0a2a08db94e919a3def49224.tar.bz2 tkinter-cce7aa059e83afea0a2a08db94e919a3def49224.tar.xz tkinter-cce7aa059e83afea0a2a08db94e919a3def49224.zip |
Remove some TODO notesv0.2
-rwxr-xr-x | __main__.py | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/__main__.py b/__main__.py index 34cb54e..6bd4266 100755 --- a/__main__.py +++ b/__main__.py @@ -252,7 +252,6 @@ def update_serverlist(hosti): def update_soul(): global vaultId, vaultToken, mySoul ## Fetch soul data - ## TODO: Doing this here is too inefficient!! auth = {"vaultId": vaultId, "token": vaultToken} @@ -597,12 +596,12 @@ def world_select(): ## TODO: Image button if an icon can be found button = HoverButton(text=w["Name"], command=partial(launch_game_master, serverlist.index(w)), width=40, anchor="w", bg="#cc6600", fg="#fff", activebackground="#ee9933") canva.create_window(200, ypos, window=button) - ## TODO FIXME: World Info Button + ## World Info Button button = HoverButton(text="?", command=partial(info_game, serverlist.index(w)), bg="#cc6600", fg="#fff", activebackground="#ee9933") canva.create_window(370, ypos, window=button) ypos += 40 - ## TODO: Footnote: Settings button + ## Footer with Mirror Lake information labf = "Lv %d, %d/%d EXP" % (mySoul["level"], mySoul["exp"], mySoul["next"]) labelf = tk.Label(root, text=labf, bg="#0c3251", fg="#fff") labelf.config(font=('helvetica', 13)) @@ -612,8 +611,8 @@ def world_select(): canva.create_window(200, 570, window=labelf) ## Settings button - #setbutton = HoverButton(text="Prefs", command=settings, bg="#cc6600", fg="#fff", activebackground="#ee9933", image=_cog_png) - setbutton = tk.Button(text="Prefs", command=settings, bg="#cc6600", activebackground="#ee9933", image=_cog_png) + setbutton = HoverButton(text="Prefs", command=settings, bg="#cc6600", fg="#fff", activebackground="#ee9933", image=_cog_png) + #setbutton = tk.Button(text="Prefs", command=settings, bg="#cc6600", activebackground="#ee9933", image=_cog_png) canva.create_window(30, 550, window=setbutton) return |