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

Fix 'TclError: unknown option' for tk

Partly reverts commit b9a46ecf35
This commit is contained in:
Juhani Numminen 2020-02-09 22:19:47 +02:00
parent 032b645e0f
commit 80d99e508d

View file

@ -156,7 +156,7 @@ class PysolStatusbar(MfxStatusbar):
self._createLabel(n, tooltip=t, width=w) self._createLabel(n, tooltip=t, width=w)
# #
label = self._createLabel('info', expand=True) label = self._createLabel('info', expand=True)
label.config(padding=(8, 0)) label.config(padx=8)
class HelpStatusbar(MfxStatusbar): class HelpStatusbar(MfxStatusbar):