Skip to content

Commit

Permalink
Fix multi-editing not showing multiple cursors in dark mode
Browse files Browse the repository at this point in the history
Add 'multi-edit' styles to Style Configurator for themes if missing.

Fix #15075, close #15109
  • Loading branch information
ozone10 authored and donho committed May 11, 2024
1 parent da5f896 commit 971aaf6
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions PowerEditor/src/Parameters.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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");
Expand Down

0 comments on commit 971aaf6

Please sign in to comment.