From 73d1cb42851b622bfe3ba578c4868659f787d722 Mon Sep 17 00:00:00 2001 From: Michael Jumper Date: Sat, 23 Mar 2013 18:39:23 -0700 Subject: [PATCH] Remove cursor redraw function. --- protocols/ssh/src/terminal.c | 16 ---------------- 1 file changed, 16 deletions(-) diff --git a/protocols/ssh/src/terminal.c b/protocols/ssh/src/terminal.c index 461cd88a..231bcb54 100644 --- a/protocols/ssh/src/terminal.c +++ b/protocols/ssh/src/terminal.c @@ -264,22 +264,6 @@ int __guac_terminal_get_glyph(guac_terminal* term, char c) { } -int guac_terminal_redraw_cursor(guac_terminal* term) { - - guac_socket* socket = term->client->socket; - - /* Erase old cursor */ - return - guac_protocol_send_move(socket, - term->cursor_layer, - - GUAC_DEFAULT_LAYER, - term->char_width * term->cursor_col, - term->char_height * term->cursor_row, - 1); - -} - int guac_terminal_set_colors(guac_terminal* term, int foreground, int background) {