Skip to content

Commit

Permalink
Align both delete buttons
Browse files Browse the repository at this point in the history
  • Loading branch information
Jaime-alv committed Oct 2, 2021
1 parent 378a1c0 commit 6c86be1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modules/gui.py
Original file line number Diff line number Diff line change
Expand Up @@ -130,10 +130,10 @@ def delete_url_tab(self):
command=lambda i=index: self.del_this(i))
c.pack(anchor='w')
submit_button = tkinter.Button(self.tab_delete_url, text='Delete')
submit_button.pack(anchor='s', expand=1, ipadx=50, ipady=5)
submit_button.pack(side='bottom', anchor='s', ipadx=50, ipady=5)
submit_button['command'] = self.delete_only
submit_button = tkinter.Button(self.tab_delete_url, text='Delete all')
submit_button.pack(anchor='s', expand=1, ipadx=50, ipady=5)
submit_button.pack(side='bottom', anchor='s', ipadx=43, ipady=5)
submit_button['command'] = self.delete_all

def delete_only(self):
Expand Down

0 comments on commit 6c86be1

Please sign in to comment.