mirror of
https://github.com/tmate-io/tmate.git
synced 2024-12-26 08:38:51 +01:00
Sync OpenBSD patchset 622:
Calculate offset correctly, fixes incorrect offset and prevents crash when status-left is empty. From Micah Cowan.
This commit is contained in:
parent
735cfaf09a
commit
95dfa950b8
12
status.c
12
status.c
@ -1,4 +1,4 @@
|
|||||||
/* $Id: status.c,v 1.142 2010-01-28 22:44:16 tcunha Exp $ */
|
/* $Id: status.c,v 1.143 2010-01-28 22:46:44 tcunha Exp $ */
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
|
* Copyright (c) 2007 Nicholas Marriott <nicm@users.sourceforge.net>
|
||||||
@ -302,18 +302,20 @@ draw:
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* Figure out the offset for the window list. */
|
/* Figure out the offset for the window list. */
|
||||||
wloffset = 1;
|
if (llen != 0)
|
||||||
|
wloffset = llen + 1;
|
||||||
|
else
|
||||||
|
wloffset = 0;
|
||||||
if (wlwidth < wlavailable) {
|
if (wlwidth < wlavailable) {
|
||||||
switch (options_get_number(&s->options, "status-justify")) {
|
switch (options_get_number(&s->options, "status-justify")) {
|
||||||
case 1: /* centered */
|
case 1: /* centered */
|
||||||
wloffset = 1 + (wlavailable - wlwidth) / 2;
|
wloffset += (wlavailable - wlwidth) / 2;
|
||||||
break;
|
break;
|
||||||
case 2: /* right */
|
case 2: /* right */
|
||||||
wloffset = 1 + (wlavailable - wlwidth);
|
wloffset += (wlavailable - wlwidth);
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
wloffset += llen;
|
|
||||||
if (larrow != 0)
|
if (larrow != 0)
|
||||||
wloffset++;
|
wloffset++;
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user