[w3m-dev 03558] long title is displayed over tab region

* display.c (redrawNLine): check l < 0
			use addnstr
From: Hironori SAKAMOTO <hsaka@mth.biglobe.ne.jp>
This commit is contained in:
Fumitoshi UKAI
2002-12-11 15:03:06 +00:00
parent d6c90ea50f
commit 96c21a2169
2 changed files with 11 additions and 3 deletions

View File

@@ -1,4 +1,4 @@
/* $Id: display.c,v 1.44 2002/12/05 16:29:04 ukai Exp $ */
/* $Id: display.c,v 1.45 2002/12/11 15:03:15 ukai Exp $ */
#include <signal.h>
#include "fm.h"
@@ -475,11 +475,13 @@ redrawNLine(Buffer *buf, int n)
bold();
addch('[');
l = t->x2 - t->x1 - 1 - strlen(t->currentBuffer->buffername);
if (l < 0)
l = 0;
if (l / 2 > 0)
addnstr_sup(" ", l / 2);
if (t == CurrentTab)
EFFECT_ACTIVE_START;
addstr(t->currentBuffer->buffername);
addnstr(t->currentBuffer->buffername, t->x2 - t->x1 - l);
if (t == CurrentTab)
EFFECT_ACTIVE_END;
if ((l + 1) / 2 > 0)