aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDimitri Sokolyuk <demon@dim13.org>2014-09-29 00:06:11 +0000
committerDimitri Sokolyuk <demon@dim13.org>2014-09-29 00:06:11 +0000
commit61eccdb8c2ea39223cd1f360412f636476e06ad0 (patch)
tree88442c516762e050b27270dce47b162da848d924
parent1267b8792b41aa7efe3843ddcf014ec9f12cea20 (diff)
fix height
-rw-r--r--Display.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/Display.c b/Display.c
index a02317a..9e14965 100644
--- a/Display.c
+++ b/Display.c
@@ -135,7 +135,7 @@ Resize(Widget w)
int i;
width = (w->core.width - 2 * dw->display.space) / n;
- height = (w->core.height - 2 * dw->display.space) / n;
+ height = w->core.height - 2 * dw->display.space;
Printd(w, "Resize");
for (i = 0; i < dw->composite.num_children; i++) {