Remove cursor redraw function.

This commit is contained in:
Michael Jumper 2013-03-23 18:39:23 -07:00
parent 10cac18b41
commit 73d1cb4285

View File

@ -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 guac_terminal_set_colors(guac_terminal* term,
int foreground, int background) { int foreground, int background) {