Skip to content

Commit

Permalink
fix(UI-UX): resize and reorder buttons on profile frame [TTTK-86]
Browse files Browse the repository at this point in the history
  • Loading branch information
HOOK-Hawkins committed Mar 18, 2024
1 parent 130ac46 commit 439487d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions UI/profile.py
Original file line number Diff line number Diff line change
Expand Up @@ -113,9 +113,9 @@ def _display_widgets(self):
self.lblNameValue.grid(sticky=tk.E+tk.W+tk.N+tk.S, column=4, row=4, columnspan=5)
self.lblUUDI.grid(sticky=tk.E+tk.W+tk.N+tk.S, column=2, row=6)
self.lblUUIDValue.grid(sticky=tk.E+tk.W+tk.N+tk.S, column=4, row=6, columnspan=5)
self.btnDelete.grid(sticky=tk.E+tk.W+tk.N+tk.S, column=2, row=8, columnspan=3)
self.btnAdd.grid(sticky=tk.E+tk.W+tk.N+tk.S, column=4, row=8, columnspan=3)
self.btnEdit.grid(sticky=tk.E+tk.W+tk.N+tk.S, column=6, row=8, columnspan=3)
self.btnAdd.grid(sticky=tk.E+tk.W+tk.N+tk.S, column=2, row=8, columnspan=2)
self.btnEdit.grid(sticky=tk.E+tk.W+tk.N+tk.S, column=5, row=8, columnspan=3)
self.btnDelete.grid(sticky=tk.E+tk.W+tk.N+tk.S, column=8, row=8)
self.btnMenu.grid(sticky=tk.E+tk.W+tk.N+tk.S, column=9, row=1)

def _delete(self):
Expand Down

0 comments on commit 439487d

Please sign in to comment.