diff options
author | George Hazan <ghazan@miranda.im> | 2018-01-19 17:12:30 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2018-01-19 17:12:30 +0300 |
commit | 61676a7a0f5edc6ea97fc27c1fe514db3354b2ed (patch) | |
tree | 0b782ca46305d389e93bfa74b1c1c763be2a7006 /plugins/TabSRMM | |
parent | c0569ec17ede7bf5dcdb5102810ad2d6153b603c (diff) |
tabSRMM: it should be possible to set default style for the message input area's font
Diffstat (limited to 'plugins/TabSRMM')
-rw-r--r-- | plugins/TabSRMM/src/chat_options.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/TabSRMM/src/chat_options.cpp b/plugins/TabSRMM/src/chat_options.cpp index b729f86d2a..4492c18e78 100644 --- a/plugins/TabSRMM/src/chat_options.cpp +++ b/plugins/TabSRMM/src/chat_options.cpp @@ -530,10 +530,10 @@ void RegisterFontServiceFonts() wcsncpy(fid.group, LPGENW("Message Sessions"), _countof(fid.group));
wcsncpy(fid.backgroundGroup, LPGENW("Message Sessions"), _countof(fid.backgroundGroup));
wcsncpy(fid.backgroundName, LPGENW("Input area background"), _countof(fid.backgroundName));
- fid.flags |= FIDF_DISABLESTYLES;
- fid.flags &= ~FIDF_ALLOWEFFECTS;
break;
case 17:
+ fid.flags |= FIDF_DISABLESTYLES;
+ fid.flags &= ~FIDF_ALLOWEFFECTS;
wcsncpy(fid.backgroundName, LPGENW("Status background"), _countof(fid.backgroundName));
break;
case 18:
|