diff options
author | George Hazan <ghazan@miranda.im> | 2023-01-16 15:29:46 +0300 |
---|---|---|
committer | George Hazan <ghazan@miranda.im> | 2023-01-16 15:29:46 +0300 |
commit | 4d91b4add55be0f9633bedb0893c63bcc0601555 (patch) | |
tree | 4cb7ecec7b85475f16e9ea4a7d88eed163976f77 | |
parent | 6f5be7c2b68feec33679ce236c562ba0e71f8e40 (diff) |
fixes #3305 (tabSRMM: цвета в редакторе шаблонов)
-rw-r--r-- | plugins/TabSRMM/src/msgoptions.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/plugins/TabSRMM/src/msgoptions.cpp b/plugins/TabSRMM/src/msgoptions.cpp index b71a71dbc7..db48cbabdf 100644 --- a/plugins/TabSRMM/src/msgoptions.cpp +++ b/plugins/TabSRMM/src/msgoptions.cpp @@ -523,10 +523,10 @@ public: Utils::enableDlgControl(m_hwndParent, IDC_RTLMODIFY, false);
clr1.SetColor(M.GetDword("cc1", SRMSGDEFSET_BKGCOLOUR));
- clr1.SetColor(M.GetDword("cc2", SRMSGDEFSET_BKGCOLOUR));
- clr1.SetColor(M.GetDword("cc3", SRMSGDEFSET_BKGCOLOUR));
- clr1.SetColor(M.GetDword("cc4", SRMSGDEFSET_BKGCOLOUR));
- clr1.SetColor(M.GetDword("cc5", SRMSGDEFSET_BKGCOLOUR));
+ clr2.SetColor(M.GetDword("cc2", SRMSGDEFSET_BKGCOLOUR));
+ clr3.SetColor(M.GetDword("cc3", SRMSGDEFSET_BKGCOLOUR));
+ clr4.SetColor(M.GetDword("cc4", SRMSGDEFSET_BKGCOLOUR));
+ clr5.SetColor(M.GetDword("cc5", SRMSGDEFSET_BKGCOLOUR));
edtText.SendMsg(EM_SETREADONLY, true, 0);
return true;
}
|