From: Kristian Høgsberg Date: Thu, 21 Jun 2012 03:04:58 +0000 (-0400) Subject: terminal: Set blank cursor on keyboard press X-Git-Tag: 0.94.90~42 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=63b298f3c74c5377638cb4db03da835598dbe7fa;p=profile%2Fivi%2Fweston.git terminal: Set blank cursor on keyboard press This way we can better see the contents of the terminal. Show cursor again on pointer motion. --- diff --git a/clients/terminal.c b/clients/terminal.c index 7b2ce21..ec0f1de 100644 --- a/clients/terminal.c +++ b/clients/terminal.c @@ -2137,6 +2137,8 @@ key_handler(struct window *window, struct input *input, uint32_t time, handle_bound_key(terminal, input, sym, time)) return; + input_set_pointer_image(input, CURSOR_BLANK); + switch (sym) { case XKB_KEY_F11: if (state == WL_KEYBOARD_KEY_STATE_RELEASED)