summaryrefslogtreecommitdiff
path: root/src/mir_app
diff options
context:
space:
mode:
authorGeorge Hazan <ghazan@miranda.im>2020-08-05 13:54:18 +0300
committerGeorge Hazan <ghazan@miranda.im>2020-08-05 13:54:18 +0300
commitfa02fba01b1a24fda16501c26f33b90710b4f9eb (patch)
tree47395c3f65f9bc8edb26ad0a76e4403f8d3c682a /src/mir_app
parentb334ced17b8a0493ca2070a0065b1954f5a82abe (diff)
fixes #2512 (StdMsg: broken group chat colors in the embedded log window)
Diffstat (limited to 'src/mir_app')
-rw-r--r--src/mir_app/src/modules.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mir_app/src/modules.cpp b/src/mir_app/src/modules.cpp
index 59d1b5d0b5..2af9ae6b30 100644
--- a/src/mir_app/src/modules.cpp
+++ b/src/mir_app/src/modules.cpp
@@ -145,7 +145,8 @@ int LoadDefaultModules(void)
if (LoadNewPluginsModule()) return 1; // will call Load(void) on everything, clist will load first
if (LoadHelpModule()) return 1;
-
+ if (LoadStdPlugins()) return 1;
+
Langpack_SortDuplicates();
if (LoadAccountsModule()) return 1;
@@ -155,7 +156,6 @@ int LoadDefaultModules(void)
if (LoadIgnoreModule()) return 1;
if (LoadVisibilityModule()) return 1;
if (LoadIdleModule()) return 1;
- if (LoadStdPlugins()) return 1;
return 0;
}