Browse Source

Update inputValueChanged in PropertyView

pull/487/head
Artur Arseniev 8 years ago
parent
commit
f14b6876ed
  1. 2
      src/style_manager/view/PropertyView.js

2
src/style_manager/view/PropertyView.js

@ -154,7 +154,7 @@ module.exports = Backbone.View.extend({
*/
inputValueChanged(e) {
e && e.stopPropagation();
this.model.set('value', this.getInputValue());
this.model.setValue(this.getInputValue(), 1, { fromInput: 1 });
this.elementUpdated();
},

Loading…
Cancel
Save