For the complete documentation index, see llms.txt. This page is also available as Markdown.

pop_style_var

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