diff options
| author | Aldrik Ramaekers <aldrikboy@gmail.com> | 2025-11-01 16:29:25 +0100 |
|---|---|---|
| committer | Aldrik Ramaekers <aldrikboy@gmail.com> | 2025-11-01 16:29:25 +0100 |
| commit | 887d5f9f8d1309134c72b1f35afc7d007a5c64aa (patch) | |
| tree | 77802f7526be4c76efbb80742f3f04df79a9b3b1 /libs/imgui-1.92.1/imgui.h | |
| parent | a2918b9724a65ba147cfafc6bcf8d410a647330b (diff) | |
refactor invoice views
Diffstat (limited to 'libs/imgui-1.92.1/imgui.h')
| -rw-r--r-- | libs/imgui-1.92.1/imgui.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libs/imgui-1.92.1/imgui.h b/libs/imgui-1.92.1/imgui.h index 7a3c8cd..3b48ad8 100644 --- a/libs/imgui-1.92.1/imgui.h +++ b/libs/imgui-1.92.1/imgui.h @@ -570,6 +570,8 @@ namespace ImGui IMGUI_API ImVec2 GetCursorStartPos(); // [window-local] initial cursor position, in window-local coordinates. Call GetCursorScreenPos() after Begin() to get the absolute coordinates version. // Other layout functions + typedef int ImGuiSeparatorFlags; + IMGUI_API void SeparatorEx(ImGuiSeparatorFlags flags, float thickness); IMGUI_API void Separator(float thickness = 1.0f); // separator, generally horizontal. inside a menu bar or in horizontal layout mode, this becomes a vertical separator. IMGUI_API void SameLine(float offset_from_start_x=0.0f, float spacing=-1.0f); // call between widgets or groups to layout them horizontally. X position given in window coordinates. IMGUI_API void NewLine(); // undo a SameLine() or force a new line when in a horizontal-layout context. |
