You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
l95 and l105 have this code p.setValue(p.getValue(index) * scale); which as far as I can tell will modify the value at position 0 regardless of what index is set to
the equivalent code in UpDown operator is p.setValue(index, p.getValue(index) * scale); as expected
The text was updated successfully, but these errors were encountered:
l95 and l105 have this code
p.setValue(p.getValue(index) * scale);
which as far as I can tell will modify the value at position 0 regardless of whatindex
is set tothe equivalent code in
UpDown
operator isp.setValue(index, p.getValue(index) * scale);
as expectedThe text was updated successfully, but these errors were encountered: