Anselm R Garbe hace 17 años
padre
commit
8e0f8ffcc6
Se han modificado 1 ficheros con 1 adiciones y 1 borrados
  1. 1 1
      dwm.c

+ 1 - 1
dwm.c

@@ -313,7 +313,7 @@ arrange(Monitor *m) {
 		m->layout->arrange(m);
 	else
 		for(i = 0; i < mcount; i++)
-			m->layout->arrange(&monitors[i]);
+			monitors[i].layout->arrange(&monitors[i]);
 	focus(NULL);
 	restack(m);
 }