winwatch: prevent divide by zero if the window height is too small
This commit is contained in:
parent
ce2487c3cc
commit
8319457a10
1 changed files with 2 additions and 0 deletions
|
@ -188,6 +188,8 @@ geometry(void)
|
|||
|
||||
z = 0;
|
||||
rows = (Dy(screen->r)-2*MARGIN+PAD)/(font->height+PAD);
|
||||
if(rows == 0)
|
||||
rows = 1;
|
||||
if(rows*cols < nwin || rows*cols >= nwin*2){
|
||||
ncols = nwin <= 0 ? 1 : (nwin+rows-1)/rows;
|
||||
if(ncols != cols){
|
||||
|
|
Loading…
Reference in a new issue