Explorar el Código

Correctly set window height after i_fit_to_img()

master
Bert Münnich hace 12 años
padre
commit
a527025314
Se han modificado 1 ficheros con 3 adiciones y 0 borrados
  1. +3
    -0
      window.c

+ 3
- 0
window.c Ver fichero

@@ -287,6 +287,9 @@ bool win_moveresize(win_t *win, int x, int y, unsigned int w, unsigned int h)
if (win == NULL || win->xwin == None)
return false;

/* caller knows nothing about the bar */
h += win->bar.h;

x = MAX(0, x);
y = MAX(0, y);
w = MIN(w, win->env.scrw - 2 * win->bw);


Cargando…
Cancelar
Guardar