Fix Cyrillic hotkeys for picker actions
All checks were successful
Release App / release-app (push) Successful in 49s

This commit is contained in:
2026-04-26 12:52:14 +03:00
parent c6e2a43e4b
commit fcb92e584c

View File

@@ -17,10 +17,16 @@ std::optional<int> mapped_layout_hotkey(wchar_t ch) {
switch (std::towlower(ch)) { switch (std::towlower(ch)) {
case L'й': case L'й':
return 'q'; return 'q';
case L'ф':
return 'a';
case L'п':
return 'g';
case L'р': case L'р':
return 'h'; return 'h';
case L'ш': case L'ш':
return 'i'; return 'i';
case L'ь':
return 'm';
case L'к': case L'к':
return 'r'; return 'r';
case L'щ': case L'щ':