Skip to content

Commit

Permalink
Fixed ColorEdit breakage introduced by d3a387c (#2557, #1875, #2034)
Browse files Browse the repository at this point in the history
  • Loading branch information
ocornut committed May 18, 2019
1 parent 679cf74 commit e6109a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion imgui_widgets.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2775,7 +2775,7 @@ bool ImGui::TempInputTextScalar(const ImRect& bb, ImGuiID id, const char* label,
if (value_changed)
MarkItemEdited(id);
}
return false;
return value_changed;
}

bool ImGui::InputScalar(const char* label, ImGuiDataType data_type, void* data_ptr, const void* step, const void* step_fast, const char* format, ImGuiInputTextFlags flags)
Expand Down

0 comments on commit e6109a9

Please sign in to comment.