Fix multi-editing not showing multiple cursors in dark mode

Add 'multi-edit' styles to Style Configurator for themes if missing.

Fix #15075, close #15109
pull/15125/head
ozone10 2024-05-08 12:01:34 +02:00 committed by Don Ho
parent da5f896de6
commit 971aaf680a
1 changed files with 5 additions and 0 deletions

View File

@ -4164,6 +4164,11 @@ bool NppParameters::feedStylerArray(TiXmlNode *node)
return result;
};
// check void ScintillaEditView::performGlobalStyles() for default colors
addStyle(L"Multi-selected text color", L"", L"C0C0C0", L"Selected text colour"); // liteGrey
addStyle(L"Multi-edit carets color", L"404040", L"", L"Caret colour"); // darkGrey
addStyle(L"Change History modified", L"FF8000", L"FF8000");
addStyle(L"Change History revert modified", L"A0C000", L"A0C000");
addStyle(L"Change History revert origin", L"40A0BF", L"40A0BF");