Prepend the group shortcut in the client search menu; from Thomas Adam.

Likewise, prepend shortcut in unhide menu.
This commit is contained in:
okan
2013-12-02 19:30:27 +00:00
parent 6b72168d92
commit d1b232fe81
2 changed files with 4 additions and 3 deletions

View File

@ -231,7 +231,8 @@ mousefunc_menu_unhide(struct client_ctx *cc, void *arg)
continue;
mi = xcalloc(1, sizeof(*mi));
(void)strlcpy(mi->text, wname, sizeof(mi->text));
(void)snprintf(mi->text, sizeof(mi->text),
"(%d) %s", cc->group->shortcut, wname);
mi->ctx = cc;
TAILQ_INSERT_TAIL(&menuq, mi, entry);
}