Skip to content

Commit

Permalink
point property editor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
kleber-jg committed Aug 31, 2021
1 parent 0f89dc5 commit 8919525
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export class PointPropertyEditor extends PropertyEditor<PIXI.Point> {

const yinput = this.yinput = document.createElement(NumberPropertyEditor.tagName) as NumberPropertyEditor;
yinput.setContent({ name: 'y', typeHint: 'number', data: prop.data }, value.y);
xinput.onchange = this.onValueChanged.bind(this);
yinput.onchange = this.onValueChanged.bind(this);
parent.appendChild(yinput);

return parent;
Expand Down

0 comments on commit 8919525

Please sign in to comment.