The following simple layout doesn't expand vertically after resizing, only vertically. I already played around with hug_width
, hug_height
and partners without success. I also tried using constraints with hbox
What i am missing?
from enaml.widgets.api import MPLCanvas, MainWindow, HGroup, VGroup, CheckBox
enamldef PumpProbeViewer(MainWindow):
HGroup:
align_widths = False
MPLCanvas: plot_wid:
figure = Figure()
VGroup: control:
CheckBox:
text = "Show current"
CheckBox:
text = "Show mean"
CheckBox:
text = "Show first detector"