New values for element minimum size

This commit is contained in:
varjolintu 2018-08-17 16:32:56 +03:00 committed by Jonathan White
parent 6eb0039a75
commit 4082479fbc

View file

@ -902,7 +902,7 @@ cipFields.isVisible = function(field) {
}
// Check element position and size
if (rect.x < 0 || rect.y < 0 || rect.width < 16 || rect.height < 16) {
if (rect.x < 0 || rect.y < 0 || rect.width < 8 || rect.height < 8) {
return false;
}