Skip to content

Commit

Permalink
fix resize issue
Browse files Browse the repository at this point in the history
  • Loading branch information
hunterjm committed Nov 23, 2015
1 parent 19701f9 commit a5f7930
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion frames/bid.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,11 +88,12 @@ def __init__(self, master, controller):
self.auctionStatus.get_view().grid(column=0, row=0, sticky='nsew', rowspan=2)

self.logView = tk.Text(auctions, bg='#1d93ab', fg='#ffeb7e', bd=0)
self.logView.grid(column=0, row=2, sticky='nsew')
self.logView.grid(column=0, row=1, sticky='nsew')

auctions.grid(column=1, row=0, sticky='nsew')
auctions.grid_rowconfigure(0, weight=3)
auctions.grid_rowconfigure(1, weight=1)
auctions.grid_columnconfigure(0, weight=1)

self.grid_rowconfigure(0, weight=1)
self.grid_columnconfigure(0, weight=0)
Expand Down

0 comments on commit a5f7930

Please sign in to comment.