diff options
author | Marius Vlad <marius.vlad@collabora.com> | 2022-12-28 17:59:36 +0200 |
---|---|---|
committer | Marius Vlad <marius.vlad@collabora.com> | 2022-12-28 18:27:29 +0200 |
commit | 0907e87f1576f8ad70657d00d720b4f6ead8aed8 (patch) | |
tree | f13732eb5de7502f664238deed6a224158de66bc | |
parent | c9d3edb4ee23a5630136ca4a67eaa3860f7651d1 (diff) |
input: Fix minor issue while reporting disable cursor
We actually reported the cursor being disabled when it fact it was not.
Bug-AGL: SPEC-4658
Signed-off-by: Marius Vlad <marius.vlad@collabora.com>
Change-Id: I81ee23e4ef2621c96344ce526a7b53d235d325e3
-rw-r--r-- | src/input.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/input.c b/src/input.c index 026625f..ad4977c 100644 --- a/src/input.c +++ b/src/input.c @@ -177,7 +177,7 @@ ivi_shell_handle_seat_created(struct wl_listener *listener, void *data) struct ivi_compositor *ivi = container_of(listener, struct ivi_compositor, seat_created_listener); - weston_log("Cursor is %s\n", ivi->disable_cursor ? "set" : "not set"); + weston_log("Cursor is %s\n", ivi->disable_cursor ? "disabled" : "not disabled"); ivi_shell_seat_create(seat, ivi->disable_cursor); } @@ -204,7 +204,7 @@ ivi_seat_init(struct ivi_compositor *ivi) wl_list_for_each(seat, &ec->seat_list, link) { weston_log("Seat %p, cursor is %s\n", seat, ivi->disable_cursor ? - "set" : "not set"); + "not disabled" : "disabled"); ivi_shell_seat_create(seat, ivi->disable_cursor); } |