ui: add separator before device settings

This commit is contained in:
Peter F. Patel-Schneider 2020-09-18 06:57:33 -04:00
parent 6e986ddf8c
commit 377e44c624
1 changed files with 2 additions and 0 deletions

View File

@ -143,6 +143,8 @@ def _create_device_panel():
p._lux = _status_line(_('Lighting')) p._lux = _status_line(_('Lighting'))
p.pack_start(p._lux, False, False, 0) p.pack_start(p._lux, False, False, 0)
p.pack_start(Gtk.Separator.new(Gtk.Orientation.HORIZONTAL), False, False, 0) # spacer
p._config = _config_panel.create() p._config = _config_panel.create()
p.pack_end(p._config, True, True, 4) p.pack_end(p._config, True, True, 4)