diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2012-09-25 08:54:01 +0100 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2012-09-25 08:54:01 +0100 |
commit | ce0b285aad74bae8b7e4d8fff1b63749cf6ddf84 (patch) | |
tree | 520bd6aeb58f6bb2b3ae2f7b821cae4f9f5ad379 /cmd-choose-tree.c | |
parent | 149f5bac05584b83778c4803b2f1a54a57d7d84d (diff) | |
download | rtmux-ce0b285aad74bae8b7e4d8fff1b63749cf6ddf84.tar.gz rtmux-ce0b285aad74bae8b7e4d8fff1b63749cf6ddf84.tar.bz2 rtmux-ce0b285aad74bae8b7e4d8fff1b63749cf6ddf84.zip |
Fix up missing bits.
Diffstat (limited to 'cmd-choose-tree.c')
-rw-r--r-- | cmd-choose-tree.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/cmd-choose-tree.c b/cmd-choose-tree.c index dd6dd3b3..e8da7a42 100644 --- a/cmd-choose-tree.c +++ b/cmd-choose-tree.c @@ -149,8 +149,10 @@ cmd_choose_tree_exec(struct cmd *self, struct cmd_ctx *ctx) * without any padding. */ if (wflag && sflag) { - xasprintf(&final_win_template_middle, " |-> %s", win_template); - xasprintf(&final_win_template_last, " \\-> %s", win_template); + xasprintf(&final_win_template_middle, + " \001tq\001> %s", win_template); + xasprintf(&final_win_template_last, + " \001mq\001> %s", win_template); } else if (wflag) { final_win_template_middle = xstrdup(win_template); final_win_template_last = xstrdup(win_template); |