home · contact · privacy
Pass height=0 to init_win() to make window as wide as the terminal screen. Also did...
[plomrogue] / src / windows.c
index 6257d4bf39b75107f3129d443d3bcc0dde84f657..48d17f0589c310fd99cb2c832a3f55b711ece916 100644 (file)
@@ -405,7 +405,7 @@ extern struct Win init_win(struct WinMeta * wmeta, char * title,
     }
     else
     {
-        w.frame.size.x = 1;
+        w.frame.size.x = wmeta->padframe.size.x;
     }
     if (height > 0 && height <= wmeta->padframe.size.y - 1)
     {