Skip to content

Commit

Permalink
missing whitespace
Browse files Browse the repository at this point in the history
  • Loading branch information
DanLindeman committed Jan 21, 2015
1 parent 8614eb2 commit 99e6e0c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions dtb/gui.py
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ def frame_incoming(master):

scroll_incoming = ttk.Scrollbar(frame, orient=tk.VERTICAL, command=self.listbox_incoming.yview)
self.listbox_incoming.configure(yscrollcommand=scroll_incoming.set)
scroll_incoming.grid(row=0, column=2, sticky=(tk.N,tk.E,tk.S))
scroll_incoming.grid(row=0, column=2, sticky=(tk.N, tk.E, tk.S))

ttk.Button(frame, text="\u21BB", width=0, command=self.update).grid(row=1, column=0, sticky=tk.SW, ipadx=5, **kw_gp)
ttk.Button(frame, text="Ignore Selected", command=self.do_ignore).grid(row=1, column=1, sticky=tk.SW, ipadx=5, **kw_gp)
Expand All @@ -154,7 +154,7 @@ def frame_outgoing(master):
self.listbox_outgoing.grid(row=0, column=0, columnspan=3, **kw_gsp)
scroll_outgoing = ttk.Scrollbar(frame, orient=tk.VERTICAL, command=self.listbox_outgoing.yview)
self.listbox_outgoing.configure(yscrollcommand=scroll_outgoing.set)
scroll_outgoing.grid(row=0, column=2, sticky=(tk.N,tk.E,tk.S))
scroll_outgoing.grid(row=0, column=2, sticky=(tk.N, tk.E, tk.S))

ttk.Button(frame, text="\u21BB", width=0, command=self.update).grid(row=1, column=0, sticky=tk.SW, ipadx=5, **kw_gp)
ttk.Button(frame, text="Remove Selected", command=self.do_remove).grid(row=1, column=1, sticky=tk.SW, ipadx=5, **kw_gp)
Expand Down

0 comments on commit 99e6e0c

Please sign in to comment.