diff src/com/five_ten_sg/connectbot/service/TerminalMonitor.java @ 212:4ecd8a39afb3

cursor movement reporting changes
author Carl Byington <carl@five-ten-sg.com>
date Mon, 07 Jul 2014 12:32:22 -0700
parents 7e4352b53f24
children 2dd627df4dfb
line wrap: on
line diff
--- a/src/com/five_ten_sg/connectbot/service/TerminalMonitor.java	Mon Jul 07 10:19:04 2014 -0700
+++ b/src/com/five_ten_sg/connectbot/service/TerminalMonitor.java	Mon Jul 07 12:32:22 2014 -0700
@@ -54,7 +54,6 @@
     private int                 start_column = 0;       // ""
     private int                 end_column   = 500;     // ""
     private boolean             modified     = false;   // used to delay screen change notifications
-    private boolean             moved        = false;   // used to delay cursor moved notifications
     private int                 to_line      = 0;       // ""
     private int                 to_column    = 0;       // ""
     private HashMap<Integer, Integer>  keymap = null;   // map MS VK_ keys to vt320 virtual keys
@@ -363,7 +362,6 @@
     }
 
     public synchronized void cursorMove(int l, int c) {
-        moved = true;
         to_line = l;
         to_column = c;
     }
@@ -379,10 +377,6 @@
         if (modified) {
             modified = false;
             sendScreen(MONITOR_CMD_SCREENCHANGE);
-        }
-
-        if (moved) {
-            moved = false;
             cursorMoved();
         }
     }
@@ -450,7 +444,7 @@
 
     public synchronized void cursorRequest() {
         Log.i(TAG, "cursorRequest()");
-        testChanged();
+        cursorMoved();
     }
 
 }