diff options
author | George Hazan <george.hazan@gmail.com> | 2024-02-18 19:32:46 +0300 |
---|---|---|
committer | George Hazan <george.hazan@gmail.com> | 2024-02-18 19:32:46 +0300 |
commit | 15ea94d0eec70601916e1c93e8dac05df9f0a917 (patch) | |
tree | 13bf158051180b1c8e1ff9553bfb29dd7e5acb2a | |
parent | 2ce03c8195193380d133300fdf487ce6f78be963 (diff) |
fixes #4200 (SRMM: увеличить лимит подгрузки сообщений в журнал)
-rw-r--r-- | plugins/Scriver/src/msgoptions.cpp | 2 | ||||
-rw-r--r-- | plugins/TabSRMM/src/msgoptions.cpp | 2 | ||||
-rw-r--r-- | src/core/stdmsg/src/msgoptions.cpp | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/plugins/Scriver/src/msgoptions.cpp b/plugins/Scriver/src/msgoptions.cpp index 2ff219b29b..7e6dddeccb 100644 --- a/plugins/Scriver/src/msgoptions.cpp +++ b/plugins/Scriver/src/msgoptions.cpp @@ -553,7 +553,7 @@ public: chkMarkFollowups(this, IDC_MARKFOLLOWUPS),
chkMsgOnNewline(this, IDC_MESSAGEONNEWLINE),
spinTime(this, IDC_LOADTIMESPIN, 12 * 60),
- spinCount(this, IDC_LOADCOUNTSPIN, 100),
+ spinCount(this, IDC_LOADCOUNTSPIN, 1000),
spinIndent(this, IDC_INDENTSPIN, 999)
{
m_fonts.OnClick = Callback(this, &CLogOptionsDlg::onClick_Fonts);
diff --git a/plugins/TabSRMM/src/msgoptions.cpp b/plugins/TabSRMM/src/msgoptions.cpp index e788d459db..5083b0d49e 100644 --- a/plugins/TabSRMM/src/msgoptions.cpp +++ b/plugins/TabSRMM/src/msgoptions.cpp @@ -752,7 +752,7 @@ public: spnLeft(this, IDC_INDENTSPIN, 1000),
spnRight(this, IDC_RINDENTSPIN, 1000),
spnLoadTime(this, IDC_LOADTIMESPIN, 24 * 60),
- spnLoadCount(this, IDC_LOADCOUNTSPIN, 100),
+ spnLoadCount(this, IDC_LOADCOUNTSPIN, 1000),
chkLoadTime(this, IDC_LOADTIME),
chkLoadCount(this, IDC_LOADCOUNT),
chkAlwaysTrim(this, IDC_ALWAYSTRIM),
diff --git a/src/core/stdmsg/src/msgoptions.cpp b/src/core/stdmsg/src/msgoptions.cpp index a3206d7e05..2eae075286 100644 --- a/src/core/stdmsg/src/msgoptions.cpp +++ b/src/core/stdmsg/src/msgoptions.cpp @@ -319,7 +319,7 @@ public: chkLoadUnread(this, IDC_LOADUNREAD),
spinTime(this, IDC_LOADTIMESPIN, 12 * 60),
- spinCount(this, IDC_LOADCOUNTSPIN, 100)
+ spinCount(this, IDC_LOADCOUNTSPIN, 1000)
{
chkTime.OnChange = Callback(this, &COptionLogDlg::onChange_Time);
chkLoadUnread.OnChange = chkLoadCount.OnChange = chkLoadTime.OnChange = Callback(this, &COptionLogDlg::onChange_Load);
|