Thanks @alloyed, that worked perfectlyalloyed wrote: ↑Tue Aug 15, 2017 12:32 amThis is in the one place in my code where I use this featuredan369 wrote: ↑Mon Aug 14, 2017 6:19 pm Does anyone know how to capture the button press against the 'X' (i.e. to close the window)? I've been looking into the docs and see that p_open is the second parameter in imgui.Begin() but it when i click it in my code it doesn't seem to have any effect/change the boolean value.afaik this is an automatically generated change. The C++ api uses that second argument as a reference parameter, but those don't exist in lua so they get tacked on to the list of return arguments instead. This also applies to things like the text fields iirc.Code: Select all
local isVisible, isOpen = imgui.Begin(windowID, true, flags) if isOpen == false then -- don't run this block next time end imgui.End()
