diff options
author | Kenny Root <kenny@the-b.org> | 2009-01-23 14:19:46 +0000 |
---|---|---|
committer | Kenny Root <kenny@the-b.org> | 2009-01-23 14:19:46 +0000 |
commit | a7fbe0bb6523c8659733b21c4bf957278e83ebfc (patch) | |
tree | 43d8ebaf959bba193415843039ce4572e4f677fd /src/org | |
parent | aed1876f36b34ee62e1537d42fcb339c6baa05b0 (diff) | |
download | connectbot-a7fbe0bb6523c8659733b21c4bf957278e83ebfc.tar.gz connectbot-a7fbe0bb6523c8659733b21c4bf957278e83ebfc.tar.bz2 connectbot-a7fbe0bb6523c8659733b21c4bf957278e83ebfc.zip |
Comply with RFC 4254 on window-change packet
* Always send false for "want reply"
* We don't need to wait since a reply should not be sent.
* Allow the sending of (informational) pixel dimensions.
Diffstat (limited to 'src/org')
-rw-r--r-- | src/org/connectbot/service/TerminalBridge.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/org/connectbot/service/TerminalBridge.java b/src/org/connectbot/service/TerminalBridge.java index 5e7c2dc..3c7d4d3 100644 --- a/src/org/connectbot/service/TerminalBridge.java +++ b/src/org/connectbot/service/TerminalBridge.java @@ -1154,7 +1154,7 @@ public class TerminalBridge implements VDUDisplay, OnKeyListener, InteractiveCal buffer.setCursorPosition(buffer.getCursorColumn(), prevRow); if(session != null) - session.resizePTY(termWidth, termHeight); + session.resizePTY(termWidth, termHeight, width, height); } catch(Exception e) { Log.e(TAG, "Problem while trying to resize screen or PTY", e); } |