[kwin] [Bug 362898] Zoom should not resort to proportional but just skip the failed cursor update
https://bugs.kde.org/show_bug.cgi?id=362898 Zamundaaa changed: What|Removed |Added CC||madha...@outlook.com --- Comment #24 from Zamundaaa --- *** Bug 449694 has been marked as a duplicate of this bug. *** -- You are receiving this mail because: You are watching all bug changes.
[kwin] [Bug 362898] Zoom should not resort to proportional but just skip the failed cursor update
https://bugs.kde.org/show_bug.cgi?id=362898 --- Comment #23 from Andrew --- I've been using plasma 6 for the past 4 weeks, exclusively with this zoom feature enabled and have not encountered this bug again since moving to plasma 6. I tend to agree this appears to finally be resolved. Fantastic! On Thu, Jun 6, 2024, 10:04 AM Zamundaaa wrote: > https://bugs.kde.org/show_bug.cgi?id=362898 > > --- Comment #22 from Zamundaaa --- > *** Bug 446234 has been marked as a duplicate of this bug. *** > > -- > You are receiving this mail because: > You are on the CC list for the bug. -- You are receiving this mail because: You are watching all bug changes.
[kwin] [Bug 362898] Zoom should not resort to proportional but just skip the failed cursor update
https://bugs.kde.org/show_bug.cgi?id=362898 --- Comment #22 from Zamundaaa --- *** Bug 446234 has been marked as a duplicate of this bug. *** -- You are receiving this mail because: You are watching all bug changes.
[kwin] [Bug 362898] Zoom should not resort to proportional but just skip the failed cursor update
https://bugs.kde.org/show_bug.cgi?id=362898 Zamundaaa changed: What|Removed |Added Resolution|--- |FIXED CC||xaver.h...@gmail.com Status|REPORTED|RESOLVED --- Comment #21 from Zamundaaa --- Cursor rendering has been changed up to use the same infrastructure as the software cursor in Plasma 6, so this should no longer be happening. If it still is, just reopen -- You are receiving this mail because: You are watching all bug changes.
[kwin] [Bug 362898] Zoom should not resort to proportional but just skip the failed cursor update
https://bugs.kde.org/show_bug.cgi?id=362898 Andrew changed: What|Removed |Added CC||andrew.loe...@gmail.com --- Comment #20 from Andrew --- I know this is old... but it is still occurring in KDE Plasma 5.19.5. It seems like the problem I experience daily with the mouse tracking changing from "push" to "proportional" is identical to what's happening here. One small caveat... I do not use firefox. For me the problem is most likely to occur when I move the mouse to the KDE taskbar and/or Application launcher. -- You are receiving this mail because: You are watching all bug changes.
[kwin] [Bug 362898] Zoom should not resort to proportional but just skip the failed cursor update
https://bugs.kde.org/show_bug.cgi?id=362898 --- Comment #19 from Daniel <86d...@gmail.com> --- I can confirm that it seems to often happen in Firefox, though it does happen on the KDE desktop as well, without any applications open, when moving the cursor to the corners a few times. -- You are receiving this mail because: You are watching all bug changes.
[kwin] [Bug 362898] Zoom should not resort to proportional but just skip the failed cursor update
https://bugs.kde.org/show_bug.cgi?id=362898 --- Comment #18 from Thomas Lübking --- There's no edit function and it's actually no bug. It seems firefox (what a surprise) can cause the server to return a null cursor image (maybe it hides it? in a weird way) and we just resolves this as general problem the most robust way (the consideration was rather that fetching the cursor image could fail in general) However, bug or not, shit happens and it's probably more elegant to resolve it by keeping the cursor (iff any present, see comment #15 for a patch), notably when considering this an a11y feature. "kcmshell5 kwineffects", configure the zoom effect, there's a checkbox for focus tracking. If this rather happens because FF warps the pointer, this won't have any impact, though. -- You are receiving this mail because: You are watching all bug changes.
[kwin] [Bug 362898] Zoom should not resort to proportional but just skip the failed cursor update
https://bugs.kde.org/show_bug.cgi?id=362898 --- Comment #17 from Fitz --- Another thing I noticed (Forgive me if there is an Edit Comment button; I couldn't find it.) is that it's very likely to revert to Proportional when I'm typing in Firefox's address bar. The magnifier seems to "snap" to focus on what I'm typing and then immediately revert to Proportional. I didn't see any such focus option in KDE - and I would've disabled it if I had - so I'm a bit confused as to what's going on there. Please tell me if there are any logs I can post or commands I can run to help. This bug drives me nuts, and I'd love to see it squashed. -- You are receiving this mail because: You are watching all bug changes.
[kwin] [Bug 362898] Zoom should not resort to proportional but just skip the failed cursor update
https://bugs.kde.org/show_bug.cgi?id=362898 Fitz changed: What|Removed |Added CC||fitzwilliamp...@gmail.com --- Comment #16 from Fitz --- I'm having exactly this bug, and I agree that it's frustratingly difficult to spot a pattern. The only significant thing that I've managed to figure out is that it usually happens fairly quickly after logging in, usually within five minutes or so. But, after it happens, if I go into Desktop Effects and manually change the Zoom mode from Push to Proportional and back, it seems to stick. I have had it revert to Proportional even after to doing this, but it's much less frequent. Not sure if that helps at all. -- You are receiving this mail because: You are watching all bug changes.
[kwin] [Bug 362898] Zoom should not resort to proportional but just skip the failed cursor update
https://bugs.kde.org/show_bug.cgi?id=362898 Thomas Lübking changed: What|Removed |Added Component|general |effects-various Severity|normal |wishlist Summary|KWin Zoom seems to "forget" |Zoom should not resort to |settings|proportional but just skip ||the failed cursor update --- Comment #15 from Thomas Lübking --- Completely untested, I'd still prefer know to why getting the cursor image would fail. diff --git a/effects/zoom/zoom.cpp b/effects/zoom/zoom.cpp index 72a976f..1807c3c 100644 --- a/effects/zoom/zoom.cpp +++ b/effects/zoom/zoom.cpp @@ -207,8 +207,15 @@ void ZoomEffect::recreateTexture() free(ximg); } else { -qCDebug(KWINEFFECTS) << "Falling back to proportional mouse tracking!"; -mouseTracking = MouseTrackingProportional; +if ((effects->isOpenGLCompositing() && texture.isNull()) +#ifdef KWIN_HAVE_XRENDER_COMPOSITING +|| (effects->compositingType() == XRenderCompositing && xrenderPicture.isNull()) +#endif +) { +qCDebug(KWINEFFECTS) << "Falling back to proportional mouse tracking!"; +mouseTracking = MouseTrackingProportional; +} +// keep old texture rather than altering the behavior, bug #362898 } } -- You are receiving this mail because: You are watching all bug changes.