mirror of
https://github.com/ocornut/imgui.git
synced 2026-01-11 00:04:24 +00:00
SliderInt, SliderFloat: Passing v_min==v_max disable setting value from clicking/dragging (#919)
This commit is contained in:
parent
a868c32ed1
commit
219e4fb8fb
1 changed files with 1 additions and 1 deletions
|
|
@ -6526,7 +6526,7 @@ bool ImGui::SliderBehavior(const ImRect& frame_bb, ImGuiID id, float* v, float v
|
|||
|
||||
// Round past decimal precision
|
||||
new_value = RoundScalar(new_value, decimal_precision);
|
||||
if (*v != new_value)
|
||||
if (*v != new_value && (v_min != v_max))
|
||||
{
|
||||
*v = new_value;
|
||||
value_changed = true;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue