From 99f03824d688be0dbd0795d4e487381976eae0bd Mon Sep 17 00:00:00 2001 From: Charles Cross Date: Tue, 20 Feb 2024 12:36:03 -0800 Subject: [PATCH] Fixes incorrect output attribute ending in example (#171) --- example/color_node_editor.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/example/color_node_editor.cpp b/example/color_node_editor.cpp index af17151..82e6670 100644 --- a/example/color_node_editor.cpp +++ b/example/color_node_editor.cpp @@ -513,7 +513,7 @@ class ColorNodeEditor const float label_width = ImGui::CalcTextSize("output").x; ImGui::Indent(node_width - label_width); ImGui::TextUnformatted("output"); - ImNodes::EndInputAttribute(); + ImNodes::EndOutputAttribute(); } ImNodes::EndNode();