diff --git a/src/style_manager/view/PropertyView.js b/src/style_manager/view/PropertyView.js index 836910eed..24b412d48 100644 --- a/src/style_manager/view/PropertyView.js +++ b/src/style_manager/view/PropertyView.js @@ -132,10 +132,10 @@ export default Backbone.View.extend({ /** * Clear the property from the target */ - clear(e) { - e && e.stopPropagation(); + clear(ev) { + ev && ev.stopPropagation(); this.model.clearValue(); - // Skip one stack with setTimeout to avoid inconsistencies + // Skip one stack with setTimeout to avoid inconsistencies (eg. visible on padding composite clear) setTimeout(() => this.targetUpdated()); },