From 13a081ed4ab770c80e6a258b6aa507ca55df3529 Mon Sep 17 00:00:00 2001 From: Maxime Coste Date: Sat, 27 Oct 2012 15:49:10 +0200 Subject: [PATCH] Remote: fix resize handling --- src/remote.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/remote.cc b/src/remote.cc index 4cf4e4eb..7bd99d59 100644 --- a/src/remote.cc +++ b/src/remote.cc @@ -261,7 +261,7 @@ void RemoteClient::write_next_key() { m_dimensions = dimensions; Key key{ resize_modifier, Codepoint(((int)dimensions.line << 16) | (int)dimensions.column) }; - write(msg, m_dimensions); + write(msg, key); } write(msg, m_ui->get_key()); }