From 6ffe0fddbf67b9897f02899ebffa03f6c48ff901 Mon Sep 17 00:00:00 2001 From: ocornut Date: Fri, 30 Oct 2015 15:01:26 +0100 Subject: [PATCH] Examples: Fixed crash when both buttons are held (#393) --- imgui_demo.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/imgui_demo.cpp b/imgui_demo.cpp index c720d0052..dc5b40a0d 100644 --- a/imgui_demo.cpp +++ b/imgui_demo.cpp @@ -1734,7 +1734,7 @@ static void ShowExampleAppCustomRendering(bool* opened) if (ImGui::IsItemHovered()) { ImVec2 mouse_pos_in_canvas = ImVec2(ImGui::GetIO().MousePos.x - canvas_pos.x, ImGui::GetIO().MousePos.y - canvas_pos.y); - if (!adding_line && ImGui::GetIO().MouseClicked[0]) + if (!adding_line && ImGui::IsMouseClicked(0)) { points.push_back(mouse_pos_in_canvas); adding_line = true; @@ -1746,9 +1746,9 @@ static void ShowExampleAppCustomRendering(bool* opened) if (!ImGui::GetIO().MouseDown[0]) adding_line = adding_preview = false; } - if (ImGui::GetIO().MouseClicked[1] && !points.empty()) + if (ImGui::IsMouseClicked(1) && !points.empty()) { - adding_line = false; + adding_line = adding_preview = false; points.pop_back(); points.pop_back(); }