diff options
author | George Hazan <ghazan@miranda.im> | 2020-05-01 14:52:45 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2020-05-01 14:52:45 +0300 |
commit | ac53fb61905a0bfd2e63afd00823eed4741fa5c5 (patch) | |
tree | a378740f4c376f1a0304e9a9235ddfd7711515c8 /plugins/NewStory/src | |
parent | 57ee32dcb7a0a52516fb8cd21271de3bb25dacef (diff) |
FIDF_DEFAULTVALID: code cleaning
Diffstat (limited to 'plugins/NewStory/src')
-rw-r--r-- | plugins/NewStory/src/fonts.cpp | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/plugins/NewStory/src/fonts.cpp b/plugins/NewStory/src/fonts.cpp index de13764082..12f0351721 100644 --- a/plugins/NewStory/src/fonts.cpp +++ b/plugins/NewStory/src/fonts.cpp @@ -19,8 +19,8 @@ MyColourID g_colorTable[COLOR_COUNT] = MyFontID g_fontTable[FONT_COUNT] = { - { "Incoming nick", "FontNickIn", RGB(0xc8, 0x3f, 0x6b) }, - { "Outgoing nick", "FontNickOut", RGB(0x08, 0x60, 0xbd) }, + { "Incoming nick", "FontNickIn", RGB(0xc8, 0x3f, 0x6b) }, + { "Outgoing nick", "FontNickOut", RGB(0x08, 0x60, 0xbd) }, { "Incoming messages", "FontMsgIn" }, { "Outgoing messages", "FontMsgOut" }, @@ -71,6 +71,7 @@ void InitFonts() } FontID fontid = {}; + fontid.flags = FIDF_DEFAULTVALID; strncpy_s(fontid.group, MODULENAME, _TRUNCATE); strncpy_s(fontid.dbSettingsGroup, MODULENAME, _TRUNCATE); |