From a7fbe0bb6523c8659733b21c4bf957278e83ebfc Mon Sep 17 00:00:00 2001 From: Kenny Root Date: Fri, 23 Jan 2009 14:19:46 +0000 Subject: 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. --- src/org/connectbot/service/TerminalBridge.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/org') 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); } -- cgit v1.2.3