Switch width and height

This commit is contained in:
iCiaran 2018-08-28 21:36:44 +01:00 committed by Timon
parent c40cdb0774
commit 7afc96fecf

View File

@ -48,7 +48,7 @@ impl ITerminal for AnsiTerminal {
}
fn set_size(&self, width: i16, height: i16, stdout: &Arc<TerminalOutput>) {
stdout.write_string(format!(csi!("8;{};{}t"), width, height));
stdout.write_string(format!(csi!("8;{};{}t"), height, width));
}
fn exit(&self,stdout: &Arc<TerminalOutput>) {