diff options
author | Cyrille Bagard <nocbos@gmail.com> | 2019-11-16 11:33:34 (GMT) |
---|---|---|
committer | Cyrille Bagard <nocbos@gmail.com> | 2019-11-16 11:33:34 (GMT) |
commit | ea2465431d9f50344f9c9b9e12535e69f10f7980 (patch) | |
tree | 18b2a690a7a46eeea4bd0cc21051a93b5d474786 /plugins/python/liveconv | |
parent | 5350f5992aad4f89d879aefe5a3829af53d09770 (diff) |
Reset values displayed at startup.
Diffstat (limited to 'plugins/python/liveconv')
-rw-r--r-- | plugins/python/liveconv/panel.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/plugins/python/liveconv/panel.py b/plugins/python/liveconv/panel.py index 614940f..644bfa9 100644 --- a/plugins/python/liveconv/panel.py +++ b/plugins/python/liveconv/panel.py @@ -59,6 +59,11 @@ class ConvPanel(PanelItem): } + for kind, func in self._conversions.items(): + + label = self._builder.get_object('%s_value' % kind) + label.set_text('-') + self._order = '@' |