https://bugs.kde.org/show_bug.cgi?id=474083

Yannick <yb21...@yahoo.fr> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |yb21...@yahoo.fr

--- Comment #1 from Yannick <yb21...@yahoo.fr> ---
I've found the issue in the file
/usr/share/plasma/plasmoids/org.kde.plasma.lock_logout/contents/ui/lockout.qml.
The solution to fix the issue is to remove the " - 1" to the following lines of
code :

#21 : return height < minButtonSize * visibleButtons ? height * visibleButtons
: height / visibleButtons - 1;
FIX : return height < minButtonSize * visibleButtons ? height * visibleButtons
: height / visibleButtons ;

#28 : return width >= minButtonSize * visibleButtons ? width / visibleButtons -
1 : width * visibleButtons
FIX : return width >= minButtonSize * visibleButtons ? width / visibleButtons :
width * visibleButtons

I've only tested the with the top bar with 24px height, and it works fine.

-- 
You are receiving this mail because:
You are watching all bug changes.

Reply via email to