You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
I just had the problem that the BeginTabItem cannot be called easily with flags enabled, if you don't want the open/close tab feature.
In the C version of ImGui this can be done by passing a nullpointer as the p_open param. But as C# does not allow this in normal code (as far as I know?), there would need to be an additional overload without the "ref bool p_open" param.
For me I now solved this by copying the generated implementation of the imguiNET and changing it by just passing null.
Hi,
I just had the problem that the BeginTabItem cannot be called easily with flags enabled, if you don't want the open/close tab feature.
In the C version of ImGui this can be done by passing a nullpointer as the p_open param. But as C# does not allow this in normal code (as far as I know?), there would need to be an additional overload without the "ref bool p_open" param.
For me I now solved this by copying the generated implementation of the imguiNET and changing it by just passing null.
The text was updated successfully, but these errors were encountered: