Removes post-accept BSKP swallowing

This commit is contained in:
jahorton 2019-07-02 09:03:22 +07:00
parent bbb1301b55
commit 2e4d42e164

View file

@ -657,13 +657,12 @@ namespace com.keyman.osk {
tryRevert: () => boolean = function(this: SuggestionManager): boolean {
if(this.recentAccept) {
this.showRevert();
return false;
this.swallowPrediction = true;
} else if(this.doRevert) {
this.doRevert = false;
return true;
} else {
return true;
}
return true;
}.bind(this);
/**