diff options
| author | nicm <nicm> | 2022-03-07 11:52:09 +0000 |
|---|---|---|
| committer | nicm <nicm> | 2022-03-07 11:52:09 +0000 |
| commit | a731b1a9162bfa8157c474d411a4d0d6f131439d (patch) | |
| tree | 5554d9bac56c756fd27cd0c3db9024089e63c49f | |
| parent | 7d4224f2073ca4111968573e35997b65a0d5787a (diff) | |
| download | rtmux-a731b1a9162bfa8157c474d411a4d0d6f131439d.tar.gz rtmux-a731b1a9162bfa8157c474d411a4d0d6f131439d.tar.bz2 rtmux-a731b1a9162bfa8157c474d411a4d0d6f131439d.zip | |
Pass client when adding menu item, GitHub issue 3103.
| -rw-r--r-- | status.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1798,7 +1798,7 @@ status_prompt_complete_window_menu(struct client *c, struct session *s, item.name = tmp; item.key = '0' + size - 1; item.command = NULL; - menu_add_item(menu, &item, NULL, NULL, NULL); + menu_add_item(menu, &item, NULL, c, NULL); free(tmp); if (size == height) |