diff options
-rwxr-xr-x | __main__.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/__main__.py b/__main__.py index 945b534..34cb54e 100755 --- a/__main__.py +++ b/__main__.py @@ -484,8 +484,9 @@ def settings(): c5 = tk.Checkbutton(root, text="Verbose logging", variable=prefLogs, bg="#0c3251", fg="#f70") canva.create_window(200, 160, window=c5) # "Download/Update GPL clients" button - button = HoverButton(text="Download GPL clients", command=_downloadClient, bg="#cc6600", fg="#fff", activebackground="#ee9933", font="helvetica 12", height=-10) - canva.create_window(200, 200, window=button) + if pref["local"]: + button = HoverButton(text="Download GPL clients", command=_downloadClient, bg="#cc6600", fg="#fff", activebackground="#ee9933", font="helvetica 12", height=-10) + canva.create_window(200, 200, window=button) ## Set or display your homeworld, but doesn't explain it if mySoul["home"] in ["Not Set", "VAULT"]: |