home · contact · privacy
Silently ignore characters in config/windows/toggle_order to which no window exists.
[plomrogue] / src / windows.c
index bd3ec4134f00b21d10e79ccd232ec7818036a21d..080880c8fff35f766ae791b5ede7152753a93604 100644 (file)
@@ -79,7 +79,7 @@ static uint8_t refit_pad(struct WinMeta * wmeta)
     }
 
     /* Only resize the pad if the rightmost window column has changed. */
-    if (getmaxx(wmeta->padframe.curses_win) != lastwincol)
+    if (getmaxx(wmeta->padframe.curses_win) + 1 != lastwincol)
     {
         if (lastwincol + 2 > UINT16_MAX)
         {