From d306bbe11e9701235a468e463699a832b89d6f4d Mon Sep 17 00:00:00 2001 From: nicm Date: Thu, 2 Oct 2014 10:39:43 +0000 Subject: Take account of window-status-separator when checking window position, based on diff from Balazs Kezes. --- status.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'status.c') diff --git a/status.c b/status.c index 4ea42f1c..96110c77 100644 --- a/status.c +++ b/status.c @@ -121,12 +121,17 @@ status_set_window_at(struct client *c, u_int x) { struct session *s = c->session; struct winlink *wl; + struct options *oo; + size_t len; x += c->wlmouse; RB_FOREACH(wl, winlinks, &s->windows) { + oo = &wl->window->options; + + len = strlen(options_get_string(oo, "window-status-separator")); if (x < wl->status_width && session_select(s, wl->idx) == 0) server_redraw_session(s); - x -= wl->status_width + 1; + x -= wl->status_width + len; } } -- cgit v1.2.3