I am using Lua 5.1.4
and IUP 3.4.0
.
Given the code:
dlg = iup.dialog {
iup.hbox {
iup.tabs {
tab1,
tab2
}
}
;
title = "window",
rasterSize = "640x480"
}
where tab1
and tab2
are each an iup.hbox
containing one or more elements, how can I make the iup.tabs
element take up the entire window?