diff options
author | George Hazan <george.hazan@gmail.com> | 2023-08-02 18:35:26 +0300 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2023-08-02 18:35:26 +0300 |
commit | 975b603994a6e1f135424a31457db54e56b1dcb3 (patch) | |
tree | f5295fba35c33d848549293e557eca835bc0b332 /plugins/NewStory/src/main.cpp | |
parent | aeee3fb8e0a9ab77492a7972964c322b3ce8cdae (diff) |
fixes #2415 (NewStory: add message direction option)
Diffstat (limited to 'plugins/NewStory/src/main.cpp')
-rw-r--r-- | plugins/NewStory/src/main.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/plugins/NewStory/src/main.cpp b/plugins/NewStory/src/main.cpp index 918d0dbd57..16747f78d4 100644 --- a/plugins/NewStory/src/main.cpp +++ b/plugins/NewStory/src/main.cpp @@ -34,7 +34,8 @@ PLUGININFOEX pluginInfoEx = CMPlugin::CMPlugin() : PLUGIN<CMPlugin>(MODULENAME, pluginInfoEx), - bOptVScroll(MODULENAME, "VScroll", true) + bOptVScroll(MODULENAME, "VScroll", true), + bSortAscending(MODULENAME, "SortAscending", true) { } |