Skip to content

Commit

Permalink
fix update button positioning
Browse files Browse the repository at this point in the history
  • Loading branch information
I5UCC committed Mar 11, 2024
1 parent c78daa1 commit 7103eb4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ui.py
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ def profile_toggle(self, state):
def show_update_button(self, text):
self.btn_update = tk.Button(self.tkui, text=text)
self.btn_update.configure(bg="#333333", fg="white", font=(self.FONT, 10), anchor="center", highlightthickness=0, activebackground="#555555", activeforeground="white")
self.btn_update.place(relx=0.99, rely=0.14, anchor="e")
self.btn_update.place(x=803, y=50, anchor="e")

def run_loop(self):
self.tkui.mainloop()
Expand Down

0 comments on commit 7103eb4

Please sign in to comment.