From 4278fa073915777094328bc6575cdcc1f849f9f1 Mon Sep 17 00:00:00 2001 From: Christian Heller Date: Thu, 2 May 2013 01:38:59 +0200 Subject: [PATCH] Corrected broken if. --- windows.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/windows.c b/windows.c index 01981e5..323d0c6 100644 --- a/windows.c +++ b/windows.c @@ -153,7 +153,7 @@ void draw_windows_borders (struct Win * win, struct Win * win_active, struct Cor void draw_window(struct Win * win) { // Draw window content if visible. - if (win->height > 1 && win->width > 1) ; + if (win->height > 1 && win->width > 1) win->draw(win); } void draw_windows (struct Win * win) { -- 2.30.2