Skip to content

Commit

Permalink
Update tr_GUI.py
Browse files Browse the repository at this point in the history
  • Loading branch information
TLiley2 authored Dec 14, 2024
1 parent 9d537ca commit 9401837
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tr_GUI.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ def on_closing():
label = tk.Label(root, text="Please select the game \nyou are currently running",font=("Arial", 10, "bold"))
label.grid(column=0, row=0, sticky=tk.S, padx=5, pady=5)

label = tk.Label(root, text="v1.00",font=("Arial", 10, "bold"))
label = tk.Label(root, text="v0.50",font=("Arial", 10, "bold"))
label.grid(column=1, row=2, sticky=tk.S, padx=5, pady=5)

button = tk.Button(root, text="Activate", command=lambda: backend.check_Status(n.get()))
Expand All @@ -128,4 +128,4 @@ def on_closing():

# Keyboard shortcut for using "Activate"
keyboard.add_hotkey(str(shortKey), lambda: button.invoke())
root.mainloop()
root.mainloop()

0 comments on commit 9401837

Please sign in to comment.