clicked_t=ImSaturate(clicked_t+delta);// FIXME-NAV: todo: cancel adjustment if current value already past edge and we are moving in edge direction, to avoid clamping value to edge.
clicked_t=ImSaturate(clicked_t+delta);
set_new_value=true;
if((clicked_t>=1.0f&&delta>0.0f)||(clicked_t<=0.0f&&delta<0.0f))// This is to avoid applying the saturation when already past the limits
if(v_min<v_max&&((v_cur>=v_max&&adjust_delta>0.0f)||(v_cur<=v_min&&adjust_delta<0.0f)))// This is to avoid applying the saturation when already past the limits