diff options
author | Nicholas Marriott <nicholas.marriott@gmail.com> | 2020-05-11 09:18:00 +0100 |
---|---|---|
committer | Nicholas Marriott <nicholas.marriott@gmail.com> | 2020-05-11 09:18:35 +0100 |
commit | c489bf0a1e5d1ef7dfd886a95b638fa7bfa1fbe2 (patch) | |
tree | 668a4e9a80fdfa92bc99bcaa08faa9826fac328f /cmd-display-message.c | |
parent | 8502517d302363cf0d18c4aedf80a2761db24c1c (diff) | |
download | rtmux-c489bf0a1e5d1ef7dfd886a95b638fa7bfa1fbe2.tar.gz rtmux-c489bf0a1e5d1ef7dfd886a95b638fa7bfa1fbe2.tar.bz2 rtmux-c489bf0a1e5d1ef7dfd886a95b638fa7bfa1fbe2.zip |
Support embedded styles in the display-message message, GitHub issue 2206.
Diffstat (limited to 'cmd-display-message.c')
-rw-r--r-- | cmd-display-message.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd-display-message.c b/cmd-display-message.c index 4e69f03a..634f0a93 100644 --- a/cmd-display-message.c +++ b/cmd-display-message.c @@ -117,7 +117,7 @@ cmd_display_message_exec(struct cmd *self, struct cmdq_item *item) if (args_has(args, 'p')) cmdq_print(item, "%s", msg); else if (tc != NULL) - status_message_set(tc, "%s", msg); + status_message_set(tc, 0, "%s", msg); free(msg); format_free(ft); |