We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3ea5f79 commit 048b755Copy full SHA for 048b755
modules/lvgl/input/lvgl_pointer_input.c
@@ -89,6 +89,7 @@ static void lvgl_pointer_process_event(const struct device *dev, struct input_ev
89
case DISPLAY_ORIENTATION_NORMAL:
90
point->x = tmp_point.x;
91
point->y = tmp_point.y;
92
+ break;
93
case DISPLAY_ORIENTATION_ROTATED_90:
94
point->x = tmp_point.y;
95
point->y = cap->y_resolution - tmp_point.x;
0 commit comments