diff options
author | George Hazan <ghazan@miranda.im> | 2020-05-01 18:23:21 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2020-05-01 18:23:27 +0300 |
commit | c9027518b426a134006a7335184df8f9205b2938 (patch) | |
tree | d74c7ad6a446c462d559edc9ae2f584f955fb2fc /plugins/NewStory/src/templates.cpp | |
parent | 7ce5ce71c631671061ba13fd30b97075fa5f3e63 (diff) |
fixes #2371 (NewStory: add grouping support)
Diffstat (limited to 'plugins/NewStory/src/templates.cpp')
-rw-r--r-- | plugins/NewStory/src/templates.cpp | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/plugins/NewStory/src/templates.cpp b/plugins/NewStory/src/templates.cpp index bcd4f5f27d..02f2523201 100644 --- a/plugins/NewStory/src/templates.cpp +++ b/plugins/NewStory/src/templates.cpp @@ -310,6 +310,9 @@ TemplateInfo templates[TPL_COUNT] = { "tpl/msglog/msg", LPGENW("Message log"), ICO_SENDMSG, LPGENW("Messages"), L"%I%i[b][color=red]%N[/color], %t:[/b]\x0d\x0a%M", 0, 0, { vfGlobal, vfContact, vfEvent, vfMessage, 0 } }, + { "tpl/msglog/msg_grp", LPGENW("Message log"), ICO_SENDMSG, LPGENW("Grouped messages"), + L"%I%i[b]%t:[/b] %M", 0, 0, + { vfGlobal, vfContact, vfEvent, vfMessage, 0 } }, { "tpl/msglog/file", LPGENW("Message log"), ICO_FILE, LPGENW("Files"), L"%I%i[b]%N, %t:[/b]%n%M", 0, 0, { vfGlobal, vfContact, vfEvent, vfFile, 0 } }, |