summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authornicm <nicm>2018-08-20 20:41:58 +0000
committernicm <nicm>2018-08-20 20:41:58 +0000
commit98a478ceb3d4b8f6d1951b0b12891e54abee96d0 (patch)
treecbec672bea9efbcad0744153db330d69065676a4
parent665f04695063a3e83773b7b4d1d50ce4f9fab970 (diff)
Move offset of window list into status struct.
-rw-r--r--status.c4
-rw-r--r--tmux.h3
2 files changed, 5 insertions, 2 deletions
diff --git a/status.c b/status.c
index e8f890e8..63bd47a4 100644
--- a/status.c
+++ b/status.c
@@ -284,7 +284,7 @@ status_get_window_at(struct client *c, u_int x)
const char *sep;
size_t seplen;
- x += c->wlmouse;
+ x += c->status.window_list_offset;
RB_FOREACH(wl, winlinks, &s->windows) {
oo = wl->window->options;
@@ -506,7 +506,7 @@ draw:
wloffset++;
/* Copy the window list. */
- c->wlmouse = -wloffset + wlstart;
+ c->status.window_list_offset = -wloffset + wlstart;
screen_write_cursormove(&ctx, wloffset, 0);
screen_write_fast_copy(&ctx, &window_list, wlstart, 0, wlwidth, 1);
screen_free(&window_list);
diff --git a/tmux.h b/tmux.h
index 9884f60a..3a45dd08 100644
--- a/tmux.h
+++ b/tmux.h
@@ -1278,8 +1278,11 @@ struct cmd_entry {
/* Status line. */
struct status_line {
struct event timer;
+
struct screen status;
struct screen *old_status;
+
+ int window_list_offset;
};
/* Client connection. */