Closed u546342 closed 1 year ago
Hello, Bjorn. Thanks for the great extension.
About PR:
The parameter cond has been added to the SetNextWindow* methods. It is useful for setting the initial size of a window that the user can later modify.
cond
SetNextWindow*
For example:
imgui.set_next_window_size(500, 300, imgui.COND_FIRSTUSEEVER) imgui.set_next_window_pos(100, 100, imgui.COND_FIRSTUSEEVER) local is_active, is_open = imgui.begin_window("My Window", show)
Hello, Bjorn. Thanks for the great extension.
About PR:
The parameter
cond
has been added to theSetNextWindow*
methods. It is useful for setting the initial size of a window that the user can later modify.For example: