aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--fm.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/fm.c b/fm.c
index b0a2fd0..88d87de 100644
--- a/fm.c
+++ b/fm.c
@@ -15,8 +15,8 @@ static fm_info *fm_w_init(terminal *t)
}
int fm_w = t->maxx / 2;
- int fm_h = t->maxy - t->windows[i]->height;
- int fm_starty = t->windows[i]->height - STAT_BAR_HEIGHT;
+ int fm_h = t->maxy - t->windows[i]->height - 1;
+ int fm_starty = t->windows[i]->height;
int fm_l_startx = 0;
int fm_r_startx = t->maxx / 2;