1
0
Fork 0
mirror of https://github.com/shlomif/PySolFC.git synced 2025-04-05 00:02:29 -04:00

Merged more of the statusbars.

This commit is contained in:
Shlomi Fish 2016-04-06 13:12:34 +03:00
parent 829d3aff32
commit b9a46ecf35
2 changed files with 2 additions and 4 deletions

View file

@ -158,7 +158,6 @@ class PysolStatusbar(MfxStatusbar):
):
self._createLabel(n, tooltip=t, width=w)
#
#self.configLabel("stuck", fg="red")
l = self._createLabel('info', expand=True)
l.config(padding=(8, 0))
self._createSizegrip()

View file

@ -146,7 +146,7 @@ class MfxStatusbar:
class PysolStatusbar(MfxStatusbar):
def __init__(self, top):
MfxStatusbar.__init__(self, top, row=3, column=0, columnspan=3)
MfxStatusbar.__init__(self, top, row=4, column=0, columnspan=3)
#
for n, t, w in (
('stuck', _("'You Are Stuck' indicator"), 3),
@ -158,8 +158,7 @@ class PysolStatusbar(MfxStatusbar):
self._createLabel(n, tooltip=t, width=w)
#
l = self._createLabel('info', expand=True)
##l.config(text='', justify='left', anchor='w')
l.config(padx=8)
l.config(padding=(8, 0))
class HelpStatusbar(MfxStatusbar):