summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rwxr-xr-x__main__.py9
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