Cleanup previous PR

This commit is contained in:
Kovid Goyal
2025-10-21 09:44:41 +05:30
parent 8630f21af1
commit 94f3da53aa
2 changed files with 5 additions and 2 deletions

View File

@@ -174,6 +174,9 @@ Detailed list of changes
- Wayland: Fix ``center-sized`` panels not working on smithay based compositors (:pull:`9117`) - Wayland: Fix ``center-sized`` panels not working on smithay based compositors (:pull:`9117`)
- Wayland: Fix scrolling using some mouse wheels that produce "VALUE120" based
scroll events too fast on some compositors (:pull:`9128`)
- Add support for Unicode 17 - Add support for Unicode 17
0.43.1 [2025-10-01] 0.43.1 [2025-10-01]

4
glfw/wl_init.c vendored
View File

@@ -202,8 +202,8 @@ pointer_handle_frame(void *data UNUSED, struct wl_pointer *pointer UNUSED) {
_GLFWwindow* window = _glfw.wl.pointerFocus; _GLFWwindow* window = _glfw.wl.pointerFocus;
if (!window) return; if (!window) return;
float x = 0, y = 0; float x = 0, y = 0;
const int HIGHRES = 1; static const int HIGHRES = 1;
const int VALUE120 = 1 << 4; static const int VALUE120 = 1 << 4;
int flags = 0; int flags = 0;
if (info.discrete.y_axis_type != AXIS_EVENT_UNKNOWN) { if (info.discrete.y_axis_type != AXIS_EVENT_UNKNOWN) {