about summary refs log tree commit diff stats
path: root/src/ui
diff options
context:
space:
mode:
authorJames Booth <boothj5@gmail.com>2016-03-01 00:03:11 +0000
committerJames Booth <boothj5@gmail.com>2016-03-01 00:03:11 +0000
commit7fdf50eb31f5cb9f15082c9ebb1e4e421756d4a2 (patch)
treed9925dad2479e198a3923e6d4dd88f5d38dd854a /src/ui
parentda7e59bc86668083270b31574886d3a5e2549eee (diff)
downloadprofani-tty-7fdf50eb31f5cb9f15082c9ebb1e4e421756d4a2.tar.gz
Add plugin wins to /win and /close autocompletion
Diffstat (limited to 'src/ui')
-rw-r--r--src/ui/window.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ui/window.c b/src/ui/window.c
index 585c0b21..05eaf586 100644
--- a/src/ui/window.c
+++ b/src/ui/window.c
@@ -350,7 +350,7 @@ win_get_string(ProfWin *window)
         {
             ProfPluginWin *pluginwin = (ProfPluginWin*)window;
             GString *gstring = g_string_new("");
-            g_string_append_printf(gstring, "%s plugin", pluginwin->tag);
+            g_string_append_printf(gstring, "Plugin: %s", pluginwin->tag);
             char *res = gstring->str;
             g_string_free(gstring, FALSE);
             return res;