rebol - REBOL3 - How to set the initial size of a layout? -
i need set initial size of layout viewed. how do that?
in r2, was:
view layout/size [button] 1000x1000
there no longer size
refinement on layout , trying set facet not work
view layout [button] options [facets: [size: 1000x1000]]
right now, view/maximize
workaround bug me, prefer not use maximized windows
you can create face before , set init-size manually in
b: layout [button] b/facets/init-size: 300x80 view b
Comments
Post a Comment