Skip to content

Commit 9b14956

Browse files
committed
Tweak progress bar padding for consistency and a cleaner look
1 parent c4e42e7 commit 9b14956

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

pysollib/tile/progressbar.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,10 +49,10 @@ def __init__(self, app, parent, title=None, images=None, color="blue",
4949
# style.configure('TProgressbar', background=color)
5050
if images:
5151
self.f1 = ttk.Label(self.frame, image=images[0])
52-
self.f1.pack(side='left', ipadx=8, ipady=4)
52+
self.f1.pack(side='left', padx=(4, 8), ipady=4)
5353
self.progress.pack(side='left', expand=True, fill='x')
5454
self.f2 = ttk.Label(self.frame, image=images[1])
55-
self.f2.pack(side='left', ipadx=8, ipady=4)
55+
self.f2.pack(side='left', padx=(8, 4), ipady=4)
5656
else:
5757
self.progress.pack(expand=True, fill='x')
5858
self.frame.pack(expand=True, fill='both')

0 commit comments

Comments
 (0)