Lowered redraw threshold to 2px

This commit is contained in:
J Guthrie
2018-11-21 09:13:54 +00:00
parent c002ab8b1d
commit 7bf4c462e8
2 changed files with 2 additions and 2 deletions
+1 -1
View File
@@ -332,7 +332,7 @@ export function uiFieldRestrictions(field, context) {
document.addEventListener('resizeWindow', function () {
utilSetDimensions(_container, null);
redraw(10);
redraw(2);
}, false);
updateHints(null);
+1 -1
View File
@@ -412,7 +412,7 @@ export function uiInit(context) {
ui.checkOverflow('#bar');
ui.checkOverflow('#footer');
// Use older code so it works on Explorer
// Use outdated code so it works on Explorer
var resizeWindowEvent = document.createEvent('Event');
resizeWindowEvent.initEvent('resizeWindow', true, true);