mirror of
https://github.com/keepassxreboot/keepassxc-browser.git
synced 2026-03-11 08:54:43 +00:00
New values for element minimum size
This commit is contained in:
parent
6eb0039a75
commit
4082479fbc
1 changed files with 1 additions and 1 deletions
|
|
@ -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;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue