Commit 7dd18697 authored by Chris Allegretta's avatar Chris Allegretta
Browse files

Make the new bottombars not suck quite so badly

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@751 35c25a1d-7b9e-4130-9fde-d3aeb78583b8
parent 96eef733
Showing with 1 addition and 1 deletion
+1 -1
......@@ -603,7 +603,7 @@ void bottombars(shortcut s[], int slen)
if (slen < 2)
k = COLS / 6 - 13;
else
k = COLS / (slen / 2) - 13;
k = COLS / ((slen + (slen %2)) / 2) - 13;
clear_bottomwin();
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment