[kwin] [Bug 448537] Mouse pointer disappears on desktop Zoom in the X11 session
https://bugs.kde.org/show_bug.cgi?id=448537 Nate Graham changed: What|Removed |Added Version Fixed In||5.26 -- You are receiving this mail because: You are watching all bug changes.
[kwin] [Bug 448537] Mouse pointer disappears on desktop Zoom in the X11 session
https://bugs.kde.org/show_bug.cgi?id=448537 Omar Helali changed: What|Removed |Added Resolution|WORKSFORME |FIXED -- You are receiving this mail because: You are watching all bug changes.
[kwin] [Bug 448537] Mouse pointer disappears on desktop Zoom in the X11 session
https://bugs.kde.org/show_bug.cgi?id=448537 Bug Janitor Service changed: What|Removed |Added Priority|NOR |HI -- You are receiving this mail because: You are watching all bug changes.
[kwin] [Bug 448537] Mouse pointer disappears on desktop Zoom in the X11 session
https://bugs.kde.org/show_bug.cgi?id=448537 Vlad Zahorodnii changed: What|Removed |Added Resolution|--- |WORKSFORME Status|REOPENED|RESOLVED -- You are receiving this mail because: You are watching all bug changes.
[kwin] [Bug 448537] Mouse pointer disappears on desktop Zoom in the X11 session
https://bugs.kde.org/show_bug.cgi?id=448537 --- Comment #23 from Omar Helali --- This problem did has not occured a xhile ago, think it should be closed -- You are receiving this mail because: You are watching all bug changes.
[kwin] [Bug 448537] Mouse pointer disappears on desktop Zoom in the X11 session
https://bugs.kde.org/show_bug.cgi?id=448537 Nate Graham changed: What|Removed |Added Status|RESOLVED|REOPENED Resolution|FIXED |--- Version Fixed In|5.24.1 | --- Comment #22 from Nate Graham --- Got another report from a user with 5.24.1 (Bug 450438), so it seems like this may not be fully fixed yet. Re-opening. -- You are receiving this mail because: You are watching all bug changes.
[kwin] [Bug 448537] Mouse pointer disappears on desktop Zoom in the X11 session
https://bugs.kde.org/show_bug.cgi?id=448537 Nate Graham changed: What|Removed |Added CC||[email protected] ||angen.de --- Comment #21 from Nate Graham --- *** Bug 450438 has been marked as a duplicate of this bug. *** -- You are receiving this mail because: You are watching all bug changes.
[kwin] [Bug 448537] Mouse pointer disappears on desktop Zoom in the X11 session
https://bugs.kde.org/show_bug.cgi?id=448537 Nate Graham changed: What|Removed |Added See Also||https://bugs.kde.org/show_b ||ug.cgi?id=450438 -- You are receiving this mail because: You are watching all bug changes.
[kwin] [Bug 448537] Mouse pointer disappears on desktop Zoom in the X11 session
https://bugs.kde.org/show_bug.cgi?id=448537 Abdullah Alharbi changed: What|Removed |Added CC||[email protected] --- Comment #20 from Abdullah Alharbi --- Hello, guys i'm sorry but does this fix released or yet ? -- You are receiving this mail because: You are watching all bug changes.
[kwin] [Bug 448537] Mouse pointer disappears on desktop Zoom in the X11 session
https://bugs.kde.org/show_bug.cgi?id=448537 ratijas changed: What|Removed |Added CC||[email protected] --- Comment #19 from ratijas --- *** Bug 448036 has been marked as a duplicate of this bug. *** -- You are receiving this mail because: You are watching all bug changes.
[kwin] [Bug 448537] Mouse pointer disappears on desktop Zoom in the X11 session
https://bugs.kde.org/show_bug.cgi?id=448537 Nate Graham changed: What|Removed |Added Version Fixed In||5.24.1 -- You are receiving this mail because: You are watching all bug changes.
[kwin] [Bug 448537] Mouse pointer disappears on desktop Zoom in the X11 session
https://bugs.kde.org/show_bug.cgi?id=448537 Vlad Zahorodnii changed: What|Removed |Added Latest Commit|https://invent.kde.org/plas |https://invent.kde.org/plas |ma/kwin/commit/0ad239a92de6 |ma/kwin/commit/43caf2539357 |ae859e892db6debafac2e3daefb |a1f9d5b2668a8eff151517377a7 |5 |e --- Comment #18 from Vlad Zahorodnii --- Git commit 43caf2539357a1f9d5b2668a8eff151517377a7e by Vlad Zahorodnii. Committed on 10/02/2022 at 07:22. Pushed by vladz into branch 'Plasma/5.24'. Fix mouse pointer disappearing after using zoom effect on X11 Currently, the Cursors::currentCursorChanged signal is wired to the updateCursor() function which calls xcb_xfixes_hide_cursor() or xcb_xfixes_show_cursor() depending if the cursor is hidden. However, the currentCursorChanged signal can be emitted if the cursor changed, e.g. a new pixmap attached, or its visibility status changes. The zoom effect hides the pointer, but when user hovers ui elements, it will most likely change and result in more than one xcb_xfixes_hide_cursor() calls. It appears like xcb_xfixes_hide_cursor() is implemented as a reference counter, i.e. if xcb_xfixes_hide_cursor() is called two times, then you must call xcb_xfixes_show_cursor() two times as well. This change adds a dedicated signal to indicate whether the cursor is hidden to avoid calling xcb_xfixes_hide_cursor() multiple times while the screen is scaled. (cherry picked from commit 0ad239a92de6ae859e892db6debafac2e3daefb5) M +1-0src/backends/drm/drm_output.cpp M +1-2src/backends/x11/standalone/x11_platform.cpp M +2-2src/cursor.cpp M +1-0src/cursor.h https://invent.kde.org/plasma/kwin/commit/43caf2539357a1f9d5b2668a8eff151517377a7e -- You are receiving this mail because: You are watching all bug changes.
[kwin] [Bug 448537] Mouse pointer disappears on desktop Zoom in the X11 session
https://bugs.kde.org/show_bug.cgi?id=448537 Vlad Zahorodnii changed: What|Removed |Added Latest Commit||https://invent.kde.org/plas ||ma/kwin/commit/0ad239a92de6 ||ae859e892db6debafac2e3daefb ||5 Resolution|--- |FIXED Status|ASSIGNED|RESOLVED --- Comment #17 from Vlad Zahorodnii --- Git commit 0ad239a92de6ae859e892db6debafac2e3daefb5 by Vlad Zahorodnii. Committed on 10/02/2022 at 07:07. Pushed by vladz into branch 'master'. Fix mouse pointer disappearing after using zoom effect on X11 Currently, the Cursors::currentCursorChanged signal is wired to the updateCursor() function which calls xcb_xfixes_hide_cursor() or xcb_xfixes_show_cursor() depending if the cursor is hidden. However, the currentCursorChanged signal can be emitted if the cursor changed, e.g. a new pixmap attached, or its visibility status changes. The zoom effect hides the pointer, but when user hovers ui elements, it will most likely change and result in more than one xcb_xfixes_hide_cursor() calls. It appears like xcb_xfixes_hide_cursor() is implemented as a reference counter, i.e. if xcb_xfixes_hide_cursor() is called two times, then you must call xcb_xfixes_show_cursor() two times as well. This change adds a dedicated signal to indicate whether the cursor is hidden to avoid calling xcb_xfixes_hide_cursor() multiple times while the screen is scaled. M +1-0src/backends/drm/drm_output.cpp M +1-2src/backends/x11/standalone/x11_platform.cpp M +2-2src/cursor.cpp M +1-0src/cursor.h https://invent.kde.org/plasma/kwin/commit/0ad239a92de6ae859e892db6debafac2e3daefb5 -- You are receiving this mail because: You are watching all bug changes.
[kwin] [Bug 448537] Mouse pointer disappears on desktop Zoom in the X11 session
https://bugs.kde.org/show_bug.cgi?id=448537 Bug Janitor Service changed: What|Removed |Added Status|CONFIRMED |ASSIGNED --- Comment #16 from Bug Janitor Service --- A possibly relevant merge request was started @ https://invent.kde.org/plasma/kwin/-/merge_requests/1987 -- You are receiving this mail because: You are watching all bug changes.
[kwin] [Bug 448537] Mouse pointer disappears on desktop Zoom in the X11 session
https://bugs.kde.org/show_bug.cgi?id=448537 Behzad A changed: What|Removed |Added CC||[email protected] --- Comment #15 from Behzad A --- *** Bug 449880 has been marked as a duplicate of this bug. *** -- You are receiving this mail because: You are watching all bug changes.
[kwin] [Bug 448537] Mouse pointer disappears on desktop Zoom in the X11 session
https://bugs.kde.org/show_bug.cgi?id=448537 Behzad A changed: What|Removed |Added CC||[email protected] --- Comment #14 from Behzad A --- *** Bug 449880 has been marked as a duplicate of this bug. *** -- You are receiving this mail because: You are watching all bug changes.
[kwin] [Bug 448537] Mouse pointer disappears on desktop Zoom in the X11 session
https://bugs.kde.org/show_bug.cgi?id=448537 Vlad Zahorodnii changed: What|Removed |Added CC||[email protected] --- Comment #13 from Vlad Zahorodnii --- *** Bug 449837 has been marked as a duplicate of this bug. *** -- You are receiving this mail because: You are watching all bug changes.
[kwin] [Bug 448537] Mouse pointer disappears on desktop Zoom in the X11 session
https://bugs.kde.org/show_bug.cgi?id=448537 --- Comment #12 from Omar Helali --- bug can still be reproduced in the new plasma 5.24 on X11, on Wayland works ok -- You are receiving this mail because: You are watching all bug changes.
[kwin] [Bug 448537] Mouse pointer disappears on desktop Zoom in the X11 session
https://bugs.kde.org/show_bug.cgi?id=448537 Omar Helali changed: What|Removed |Added Version|5.23.90 |5.24.0 -- You are receiving this mail because: You are watching all bug changes.
[kwin] [Bug 448537] Mouse pointer disappears on desktop Zoom in the X11 session
https://bugs.kde.org/show_bug.cgi?id=448537 --- Comment #11 from Iyán Méndez Veiga --- Sorry, forgot to mention that I can confirm both with nvidia-470 and nvidia-495. -- You are receiving this mail because: You are watching all bug changes.
[kwin] [Bug 448537] Mouse pointer disappears on desktop Zoom in the X11 session
https://bugs.kde.org/show_bug.cgi?id=448537 Iyán Méndez Veiga changed: What|Removed |Added CC||[email protected] --- Comment #10 from Iyán Méndez Veiga --- I can confirm and replicate this issue as well. Also, the "workaround", although the mouse only comes to me while I keep some level of zooming. I also notice one weird thing. If you are sharing your screen (tried with Zoom and Teams), the mouse can still be seen by people even though it disappears from the screen locally. Operating System: Arch Linux KDE Plasma Version: 5.23.90 KDE Frameworks Version: 5.90.0 Qt Version: 5.15.2 Kernel Version: 5.16.4-arch1-1 (64-bit) Graphics Platform: X11 Processors: 8 × Intel® Core™ i7-4790K CPU @ 4.00GHz Memory: 15.5 GiB of RAM Graphics Processor: NVIDIA GeForce GTX 1070/PCIe/SSE2 -- You are receiving this mail because: You are watching all bug changes.
[kwin] [Bug 448537] Mouse pointer disappears on desktop Zoom in the X11 session
https://bugs.kde.org/show_bug.cgi?id=448537 Vlad Zahorodnii changed: What|Removed |Added Flags||Wayland-, X11+ -- You are receiving this mail because: You are watching all bug changes.
[kwin] [Bug 448537] Mouse pointer disappears on desktop Zoom in the X11 session
https://bugs.kde.org/show_bug.cgi?id=448537 --- Comment #9 from Sebastian Kuźlak --- I set correctly way back. Didn't change a thing since then. It used to work. Now it doesn't. ❯ sudo lsmod | grep nvidia nvidia_uvm 2551808 0 nvidia_drm 73728 6 nvidia_modeset 1204224 12 nvidia_drm nvidia 35401728 595 nvidia_uvm,nvidia_modeset -- You are receiving this mail because: You are watching all bug changes.
[kwin] [Bug 448537] Mouse pointer disappears on desktop Zoom in the X11 session
https://bugs.kde.org/show_bug.cgi?id=448537 --- Comment #8 from Omar Helali --- (In reply to Sebastian Kuźlak from comment #7) > Well, i tried now running wayland but kwin_wayland crashes. just in case .. nvidia-drm ... modeset ... :) -- You are receiving this mail because: You are watching all bug changes.
[kwin] [Bug 448537] Mouse pointer disappears on desktop Zoom in the X11 session
https://bugs.kde.org/show_bug.cgi?id=448537 --- Comment #7 from Sebastian Kuźlak --- Well, i tried now running wayland but kwin_wayland crashes. -- You are receiving this mail because: You are watching all bug changes.
[kwin] [Bug 448537] Mouse pointer disappears on desktop Zoom in the X11 session
https://bugs.kde.org/show_bug.cgi?id=448537 --- Comment #6 from [email protected] --- I confirm that this bug does not exist on the Wayland session running on Arch / Nvidia (GF750Ti no egl) - Wayland running great by the way. Just switching to X11 makes the bug reappear -- You are receiving this mail because: You are watching all bug changes.
[kwin] [Bug 448537] Mouse pointer disappears on desktop Zoom in the X11 session
https://bugs.kde.org/show_bug.cgi?id=448537 --- Comment #5 from Sebastian Kuźlak --- Didn't test it on wayland since if i remember correctly 5.25 removed eglstreams so on my gtx660 i wont be able to run wayland. X11. I can reproduce it 95% of the time. Need to restart with kwin_x11 --replace to get rid of it. -- You are receiving this mail because: You are watching all bug changes.
[kwin] [Bug 448537] Mouse pointer disappears on desktop Zoom in the X11 session
https://bugs.kde.org/show_bug.cgi?id=448537 --- Comment #4 from [email protected] --- It bugs only on X11, works normally in Wayland -- You are receiving this mail because: You are watching all bug changes.
[kwin] [Bug 448537] Mouse pointer disappears on desktop Zoom in the X11 session
https://bugs.kde.org/show_bug.cgi?id=448537 --- Comment #3 from [email protected] --- Bug only on x11, works normal on Wayland On Thu, 20 Jan 2022, 22:43 Nate Graham, wrote: > https://bugs.kde.org/show_bug.cgi?id=448537 > > Nate Graham changed: > >What|Removed |Added > > > CC||[email protected] > Component|general |effects-various > Summary|Mouse pointer disappears on |Mouse pointer disappears > on >|desktop Zoom|desktop Zoom in the X11 >||session > > --- Comment #2 from Nate Graham --- > Cannot confirm in the Wayland session; works for me. > > -- > You are receiving this mail because: > You reported the bug. -- You are receiving this mail because: You are watching all bug changes.
[kwin] [Bug 448537] Mouse pointer disappears on desktop Zoom in the X11 session
https://bugs.kde.org/show_bug.cgi?id=448537 Nate Graham changed: What|Removed |Added CC||[email protected] Component|general |effects-various Summary|Mouse pointer disappears on |Mouse pointer disappears on |desktop Zoom|desktop Zoom in the X11 ||session --- Comment #2 from Nate Graham --- Cannot confirm in the Wayland session; works for me. -- You are receiving this mail because: You are watching all bug changes.
