changeset 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
files src/com/five_ten_sg/connectbot/service/TerminalMonitor.java
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/com/five_ten_sg/connectbot/service/TerminalMonitor.java	Thu May 29 20:15:58 2014 -0700
+++ b/src/com/five_ten_sg/connectbot/service/TerminalMonitor.java	Thu May 29 20:17:16 2014 -0700
@@ -327,7 +327,7 @@
 
     public synchronized void cursorMove(int l, int c) {
         moved = true;
-        to_line = l
+        to_line = l;
         to_column = c;
     }