Skip to content

Commit

Permalink
fire events if the filteredChange differs from the old value (#9580)
Browse files Browse the repository at this point in the history
  • Loading branch information
peuter authored and level420 committed Oct 23, 2018
1 parent 1f94421 commit fc331d7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion framework/source/class/qx/ui/form/AbstractField.js
Original file line number Diff line number Diff line change
Expand Up @@ -570,7 +570,7 @@ qx.Class.define("qx.ui.form.AbstractField",
var filteredValue = this._validateInput(value);
if (filteredValue != value)
{
fireEvents = false;
fireEvents = this.__oldInputValue !== filteredValue;
value = filteredValue;
this.getContentElement().setValue(value);
}
Expand Down

0 comments on commit fc331d7

Please sign in to comment.