diff options
| author | Kenny Root <kenny@the-b.org> | 2009-06-22 23:29:46 +0000 | 
|---|---|---|
| committer | Kenny Root <kenny@the-b.org> | 2009-06-22 23:29:46 +0000 | 
| commit | d4e6a327aa2a5b0fd0be9a5e3a6754c8ee3c652a (patch) | |
| tree | abd33038ea23f77508f32896fbbf2cf3783c87bd | |
| parent | 675fc94ffa751c609f271ddc1eeca1c469d49f70 (diff) | |
| download | connectbot-d4e6a327aa2a5b0fd0be9a5e3a6754c8ee3c652a.tar.gz connectbot-d4e6a327aa2a5b0fd0be9a5e3a6754c8ee3c652a.tar.bz2 connectbot-d4e6a327aa2a5b0fd0be9a5e3a6754c8ee3c652a.zip  | |
Flip rows and columns to match actual API call
git-svn-id: https://connectbot.googlecode.com/svn/trunk/connectbot@323 df292f66-193f-0410-a5fc-6d59da041ff2
| -rw-r--r-- | src/org/connectbot/transport/Local.java | 2 | 
1 files changed, 1 insertions, 1 deletions
diff --git a/src/org/connectbot/transport/Local.java b/src/org/connectbot/transport/Local.java index dbf959b..0c44e82 100644 --- a/src/org/connectbot/transport/Local.java +++ b/src/org/connectbot/transport/Local.java @@ -180,7 +180,7 @@ public class Local extends AbsTransport {  	@Override  	public void setDimensions(int columns, int rows, int width, int height) {  		try { -			mExec_setPtyWindowSize.invoke(null, shellFd, columns, rows, width, height); +			mExec_setPtyWindowSize.invoke(null, shellFd, rows, columns, width, height);  		} catch (Exception e) {  			Log.e(TAG, "Couldn't resize pty", e);  		}  | 
