소스 검색

except improvements to the mouse handling this is already nearly feature complete

Anselm R. Garbe 19 년 전
부모
커밋
86d9851427
1개의 변경된 파일5개의 추가작업 그리고 0개의 파일을 삭제
  1. 5 0
      client.c

+ 5 - 0
client.c

@@ -60,8 +60,13 @@ max(Arg *arg)
 void
 view(Arg *arg)
 {
+	Client *c;
+
 	tsel = arg->i;
 	arrange(NULL);
+
+	for(c = clients; c; c = next(c->next))
+		draw_client(c);
 }
 
 void