home
·
contact
·
privacy
projects
/
plomrogue
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b076502
)
Corrected broken if.
author
Christian Heller
<c.heller@plomlompom.de>
Wed, 1 May 2013 23:38:59 +0000
(
01:38
+0200)
committer
Christian Heller
<c.heller@plomlompom.de>
Wed, 1 May 2013 23:38:59 +0000
(
01:38
+0200)
windows.c
patch
|
blob
|
history
diff --git
a/windows.c
b/windows.c
index 01981e5e883cd6372b5e90c404d164587798695f..323d0c6aed13421e91227644e4f8537e8e39421d 100644
(file)
--- 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) {