Mercurial > 510Connectbot
comparison src/com/five_ten_sg/connectbot/service/TerminalMonitor.java @ 17:02717d15de9b
delay sending cursor move notifications until the host is quiet
author | Carl Byington <carl@five-ten-sg.com> |
---|---|
date | Thu, 29 May 2014 20:17:16 -0700 |
parents | 48a8daea9221 |
children | 49fc5fba28f3 |
comparison
equal
deleted
inserted
replaced
16:48a8daea9221 | 17:02717d15de9b |
---|---|
325 monitorWrite(MONITOR_CMD_HOSTDATA, arg); | 325 monitorWrite(MONITOR_CMD_HOSTDATA, arg); |
326 } | 326 } |
327 | 327 |
328 public synchronized void cursorMove(int l, int c) { | 328 public synchronized void cursorMove(int l, int c) { |
329 moved = true; | 329 moved = true; |
330 to_line = l | 330 to_line = l; |
331 to_column = c; | 331 to_column = c; |
332 } | 332 } |
333 | 333 |
334 public void cursorMoved() { | 334 public void cursorMoved() { |
335 char[] arg = new char[4]; | 335 char[] arg = new char[4]; |