added a little vertical space below "Add PV" input

This commit is contained in:
2021-05-31 14:32:55 +02:00
parent 8957f73f28
commit c6f262f066
+1 -1
View File
@@ -17,7 +17,7 @@ class Director:
ti_add_pvs.on_change("value", self.on_add_pvs)
self.plot_container = plot_container = column()
root_container = column(ti_add_pvs, plot_container)
root_container = column(ti_add_pvs, Spacer(height=15), plot_container)
doc.add_root(root_container)
self.updates = []