ui: fixed vertical alignment of panel after collapsing widgets

This commit is contained in:
Vinícius 2020-08-31 10:44:42 -03:00 committed by Peter F. Patel-Schneider
parent 7a65c40312
commit d87bc594f4
1 changed files with 1 additions and 1 deletions

View File

@ -144,7 +144,7 @@ def _create_device_panel():
p.pack_start(p._lux, False, False, 0) p.pack_start(p._lux, False, False, 0)
p._config = _config_panel.create() p._config = _config_panel.create()
p.pack_end(p._config, False, False, 4) p.pack_end(p._config, True, True, 4)
return p return p