Remove debugging leftover

This commit is contained in:
Felix Stieglitz 2024-02-16 08:16:58 +01:00
parent d183b31bbd
commit f717229f8e
No known key found for this signature in database
GPG key ID: C892C174A5CA5425

View file

@ -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;
};