rxi / microui

A tiny immediate-mode UI library
MIT License
3.29k stars 239 forks source link

Question: how do I open a window #44

Closed ericoporto closed 3 years ago

ericoporto commented 3 years ago

Once I closed a window, is it possible to reopen?

thomashope commented 3 years ago

Get the container and set it to open again.

mu_Container *cnt = mu_get_container(ctx, "Window Title");
cnt->open = 1;
ericoporto commented 3 years ago

Thank you!