From 8942656d6917e40907b86214aadf4590a808961a Mon Sep 17 00:00:00 2001 From: malc Date: Tue, 1 Dec 2015 04:44:12 +0300 Subject: [PATCH] Gross (and hopefully) temporary hack --- main.ml | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/main.ml b/main.ml index cedbf9c..ca387f5 100644 --- a/main.ml +++ b/main.ml @@ -6167,7 +6167,16 @@ let ract cmds = ) else fixx rest in - fixx state.layout + let layout = + let sx = state.x in + let ww = state.winw in + state.winw <- state.winw * 10; + let res = layout state.y state.winh in + state.x <- sx; + state.winw <- ww; + res + in + fixx layout ) | "activatewin" :: [] -> Wsi.activatewin () | "quit" :: [] -> raise Quit -- 2.11.4.GIT