Hi Mike,
>>On my system on click of the mouse wheel gives a change of 5% of the maximum value.
Each step = range/20
>>Is there a way to change this to give a much smaller change, say 1%?
interface.js line 134 and 254
change v += delta/20; to v += delta/100;
UPD:
Added dynamic delta adjusting
|