https://bugs.kde.org/show_bug.cgi?id=517214
Bug ID: 517214
Summary: Clicks on the diamonds are often ignored
Classification: Applications
Product: kdiamond
Version First 25.12.3
Reported In:
Platform: CachyOS
OS: Linux
Status: REPORTED
Severity: normal
Priority: NOR
Component: general
Assignee: [email protected]
Reporter: [email protected]
CC: [email protected]
Target Milestone: ---
Bug: clicks on the diamonds are often not registered.
Cause: on Wayland / High-DPI 4K, the game's window surface doesn't always
communicate its "active" state to the compositor correctly. This results in the
clicks being "dropped" because the compositor thinks the click happened on a
background layer or an unresponsive UI element.
The Solution: XWayland Translation
```
mkdir -p ~/.local/share/applications && cp
/usr/share/applications/org.kde.kdiamond.desktop ~/.local/share/applications/
&& sed -i 's/^Exec=kdiamond/Exec=env QT_QPA_PLATFORM=xcb kdiamond/'
~/.local/share/applications/org.kde.kdiamond.desktop
```
The solution works by forcing the app to use XWayland instead of native
Wayland.
`QT_QPA_PLATFORM=xcb` This environment variable tells the Qt library to use the
X11 (xcb) backend.
--
You are receiving this mail because:
You are watching all bug changes.