From 24f98fe0a0107fd4a897289979caf3e66495a7e6 Mon Sep 17 00:00:00 2001 From: shweet Date: Mon, 1 Dec 2025 22:33:03 -0500 Subject: [PATCH] fix for document tooltip --- src/imgui/documents.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/imgui/documents.cpp b/src/imgui/documents.cpp index ce7696a..fc06c26 100644 --- a/src/imgui/documents.cpp +++ b/src/imgui/documents.cpp @@ -103,7 +103,7 @@ namespace anm2ed::imgui ImGui::EndTabItem(); } - ImGui::SetItemTooltip("%s", document.path.c_str()); + ImGui::SetItemTooltip("%s", document.path.string().c_str()); ImGui::PopFont(); }