diff options
author | James Booth <boothj5@gmail.com> | 2016-10-14 23:56:51 +0100 |
---|---|---|
committer | James Booth <boothj5@gmail.com> | 2016-10-14 23:56:51 +0100 |
commit | 2f888979c511c9260062dee71ba1060a23aa52d0 (patch) | |
tree | bfd0ae727d077634d99f83c8cc81d39c568514fe /src/plugins | |
parent | 54cf1dbec43ccc3c300a04c26c8da54538f2da32 (diff) | |
download | profani-tty-2f888979c511c9260062dee71ba1060a23aa52d0.tar.gz |
Use THEME_DEFAULT
Diffstat (limited to 'src/plugins')
-rw-r--r-- | src/plugins/api.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/plugins/api.c b/src/plugins/api.c index 6c27ef06..be5639dc 100644 --- a/src/plugins/api.c +++ b/src/plugins/api.c @@ -368,7 +368,7 @@ api_win_show(const char *tag, const char *line) } ProfWin *window = (ProfWin*)pluginwin; - win_printf(window, '!', 0, NULL, 0, 0, "", "%s", line); + win_printf(window, '!', 0, NULL, 0, THEME_DEFAULT, "", "%s", line); return 1; } |