this post was submitted on 21 Nov 2024
81 points (98.8% liked)

Linux

5278 readers
509 users here now

A community for everything relating to the linux operating system

Also check out [email protected]

Original icon base courtesy of [email protected] and The GIMP

founded 1 year ago
MODERATORS
 

I find this hilarious. Is this an easter egg? When shaking my mouse cursor, I can get it to take up the whole screens height.

This is KDE Plasma 6.

you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 5 points 17 hours ago (2 children)

Can't tell if lazy programming or just figuring it will fix itself. In theory there would be a point of overflow maybe? Well, I guess that also fixes itself.

[–] [email protected] 9 points 16 hours ago

It's by design as mentioned in this bug report.

There is a hidden config to cap the over magnification on shake

[Effect-shakecursor]
OverMagnification=0
[–] [email protected] 4 points 16 hours ago (2 children)

I assume the KDE implementation resizes to default when you stop shaking it.

I could totally see someone coding a function that increases the mouse pointer by x% every y mouse shakes, and then neglecting to put in a size cap.

[–] [email protected] 3 points 16 hours ago* (last edited 16 hours ago)

I could totally see someone coding a function that increases the mouse pointer by x% every y mouse shakes, and then neglecting to put in a size cap.

This feature used to be in KDE 5 as well though, but with a size cap. I suspect the removal of the size cap is intentional rather than a bug.

[–] [email protected] 1 points 16 hours ago

Yes, it resets once motion is stopped. It's one of those things where without comments in the code or something you could also assume forgetting to check one of the bounds just happened to work fine.