commit 4918811ff2fbe4e837b99e036523fd438b21e6aa from: Stefan Sperling via: Thomas Adam date: Fri Jul 01 21:13:24 2022 UTC fix recent regression in tog where split view was not restored after resize ok jamesk commit - 68e8cedbff75686437a3d71b0c265fb66cbbbd75 commit + 4918811ff2fbe4e837b99e036523fd438b21e6aa blob - 7601592c4354b7e07bd6f0da5c83b292d62aaf49 blob + b2f05a9f1e7b45ac6b8a893b9822d0127132a376 --- tog/tog.c +++ tog/tog.c @@ -781,7 +781,7 @@ view_resize(struct tog_view *view) else ncols = view->ncols + (COLS - view->cols); - if (view->child && view_is_splitscreen(view->child)) { + if (view->child) { view->child->begin_x = view_split_begin_x(view->begin_x); if (view->child->begin_x == 0) { ncols = COLS;