1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-06-16 02:19:55 +00:00

Ensure edit-text widget fixes height even if refresh isn't required

Fixes #1995
This commit is contained in:
Jermolene 2015-10-12 17:54:51 +01:00
parent acc44c6f67
commit 85553609b1

View File

@ -185,6 +185,8 @@ EditTextWidget.prototype.refresh = function(changedTiddlers) {
this.updateEditor(this.getEditInfo().value);
return true;
}
// Fix the height anyway in case there has been a reflow
this.fixHeight();
return false;
};