diff options
author | George Hazan <ghazan@miranda.im> | 2020-05-05 19:30:12 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2020-05-05 19:30:12 +0300 |
commit | 63c39e478f065ef664c7023e67391372ac859538 (patch) | |
tree | f28c1c5b9de2832dbc4a6abe02eb8aff321b71b0 /plugins/NewStory/src/stdafx.h | |
parent | 01e2e633ef9c613464b84d8065d103d1112d4156 (diff) |
another option for drawing window edge
Diffstat (limited to 'plugins/NewStory/src/stdafx.h')
-rw-r--r-- | plugins/NewStory/src/stdafx.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/NewStory/src/stdafx.h b/plugins/NewStory/src/stdafx.h index eb3adc1797..c4a5065c99 100644 --- a/plugins/NewStory/src/stdafx.h +++ b/plugins/NewStory/src/stdafx.h @@ -82,7 +82,7 @@ struct CMPlugin : public PLUGIN<CMPlugin> HANDLE m_log; CMOption<bool> bOptVScroll; - bool bMsgGrouping; // this option is a copy of static CMOption to keep performance high + bool bMsgGrouping, bDrawEdge; // thesw options are a copy of static CMOption to keep performance high CMPlugin(); @@ -90,5 +90,5 @@ struct CMPlugin : public PLUGIN<CMPlugin> int Unload() override; }; -extern CMOption<bool> g_bOptGrouping; -extern wchar_t* months[12];
\ No newline at end of file +extern CMOption<bool> g_bOptGrouping, g_bOptDrawEdge; +extern wchar_t* months[12]; |