diff options
| author | Aldrik Ramaekers <aldrikboy@gmail.com> | 2025-11-01 14:09:04 +0100 |
|---|---|---|
| committer | Aldrik Ramaekers <aldrikboy@gmail.com> | 2025-11-01 14:09:04 +0100 |
| commit | a2918b9724a65ba147cfafc6bcf8d410a647330b (patch) | |
| tree | 3b8ca3ee934a239f458b889f06beb673fa32ffa4 /libs/imgui-1.92.1/imgui_widgets.cpp | |
| parent | 9b8664daf17dac9efb1f4add9d00c562e4ddbf40 (diff) | |
export ui, localizations
Diffstat (limited to 'libs/imgui-1.92.1/imgui_widgets.cpp')
| -rw-r--r-- | libs/imgui-1.92.1/imgui_widgets.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libs/imgui-1.92.1/imgui_widgets.cpp b/libs/imgui-1.92.1/imgui_widgets.cpp index a0c4f14..501ec22 100644 --- a/libs/imgui-1.92.1/imgui_widgets.cpp +++ b/libs/imgui-1.92.1/imgui_widgets.cpp @@ -1677,7 +1677,7 @@ void ImGui::SeparatorEx(ImGuiSeparatorFlags flags, float thickness) } } -void ImGui::Separator() +void ImGui::Separator(float thickness) { ImGuiContext& g = *GImGui; ImGuiWindow* window = g.CurrentWindow; @@ -1692,7 +1692,7 @@ void ImGui::Separator() if (window->DC.CurrentColumns) flags |= ImGuiSeparatorFlags_SpanAllColumns; - SeparatorEx(flags, 1.0f); + SeparatorEx(flags, thickness); } void ImGui::SeparatorTextEx(ImGuiID id, const char* label, const char* label_end, float extra_w) |
