Searched refs:IndentSpacing (Results 1 – 2 of 2) sorted by relevance
1097 …IndentSpacing = 21.0f; // Horizontal spacing when e.g. entering a tree node. … in ImGuiStyle()1132 IndentSpacing = ImFloor(IndentSpacing * scale_factor); in ScaleAllSizes()5813 …{ ImGuiDataType_Float, 1, (ImU32)IM_OFFSETOF(ImGuiStyle, IndentSpacing) }, // ImGuiStyleVar_…6639 window->DC.Indent.x += (indent_w != 0.0f) ? indent_w : g.Style.IndentSpacing; in Indent()6647 window->DC.Indent.x -= (indent_w != 0.0f) ? indent_w : g.Style.IndentSpacing; in Unindent()
1252 …float IndentSpacing; // Horizontal indentation when e.g. entering a tree node. … member