Skip to content

Commit 3e57795

Browse files
jdumasclaude
andcommitted
Update imgui to v1.92.8 (and implot/ImGuizmo), fix AddRect signature
- deps/imgui/imgui: 922a11f0 -> v1.92.8 (8936b58f) - deps/imgui/implot: v1.0 (3da8bd34) -> latest master (d65a2bef) - deps/imgui/ImGuizmo: fb5dec9 -> jdumas/ImGuizmo@097e4da - .gitmodules: point ImGuizmo at https://github.com/jdumas/ImGuizmo.git - color_bar.cpp: swap AddRect thickness/flags args (imgui 1.92.8 signature) Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
1 parent 59da72d commit 3e57795

5 files changed

Lines changed: 5 additions & 5 deletions

File tree

.gitmodules

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,4 @@
1717
url = https://github.com/epezent/implot
1818
[submodule "deps/imgui/ImGuizmo"]
1919
path = deps/imgui/ImGuizmo
20-
url = https://github.com/nmwsharp/ImGuizmo.git
20+
url = https://github.com/jdumas/ImGuizmo.git

deps/imgui/imgui

Submodule imgui updated 123 files

src/color_bar.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -260,7 +260,7 @@ void OnscreenColorBarWidget::draw() {
260260

261261
// draw the border around the map
262262
dl->AddRect(barTopLeft, ImVec2(barTopLeft.x + barRegionWidth, barTopLeft.y + barRegionHeight), foregroundColor, 0.f,
263-
ImDrawFlags_None, borderWidth);
263+
borderWidth, ImDrawFlags_None);
264264

265265
// title text
266266
dl->AddText(ImVec2(barTopLeft.x + 0.5 * borderWidth, barTopLeft.y - 1.3 * titleHeight), foregroundColor,

0 commit comments

Comments
 (0)