diff --git a/keepassxc-browser/content/ui.js b/keepassxc-browser/content/ui.js index 9ceaca0..23f48dd 100644 --- a/keepassxc-browser/content/ui.js +++ b/keepassxc-browser/content/ui.js @@ -127,7 +127,6 @@ kpxcUI.updateIconPosition = function(iconClass) { kpxcUI.calculateIconOffset = function(field, size) { const offset = Math.floor((field.offsetHeight / 2) - (size / 2) - 1); - console.log(field.offsetHeight, size, offset); return (offset < 0) ? 0 : offset; };