Skip to content

Commit

Permalink
Limit the size of the statusbar
Browse files Browse the repository at this point in the history
  • Loading branch information
werdeil committed Sep 23, 2018
1 parent 8fea0c1 commit 54ba89b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion itunes_last_export/gui.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ def __init__(self, fenetre, **kwargs):
self.status.init_progress_bar(progress_bar)
self.status.progress_bar.grid(row=6, column=1, columnspan=3)

status_bar = Label(fenetre, textvariable=self.status.status_text, bd=1, relief=SUNKEN, anchor=W)
status_bar = Label(fenetre, textvariable=self.status.status_text, bd=1, relief=SUNKEN, anchor=W, width=30)
self.status.init_status_bar(status_bar)
self.status.status_bar.pack(side=BOTTOM, fill=X)

Expand Down

0 comments on commit 54ba89b

Please sign in to comment.