Skip to content

Commit

Permalink
Angle in number input should be opposite side in knob
Browse files Browse the repository at this point in the history
  • Loading branch information
fatih-erikli committed Dec 25, 2023
1 parent c4372ef commit d2fe75a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/fontra/client/web-components/ui-form.js
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ export class Form extends SimpleElement {
onchange: () => {
let value = parseFloat(inputElement.value);
this._fieldChanging(fieldItem.key, value);
rotaryControl.value = value;
rotaryControl.value = value * -1;
},
});
let valueStream;
Expand Down

0 comments on commit d2fe75a

Please sign in to comment.