Pops a style from the stack.
void pop_style_var(int count = 1)
g_imgui.push_style_var(ImGuiStyleVar_WindowBorderSize, 0.0); g_imgui.push_style_var(ImGuiStyleVar_WindowPadding, vec(0, 0)); // draw your stuff here g_imgui.pop_style_var(2) // resets the style changes
Last updated 2 years ago