1
1
mirror of https://github.com/wez/wezterm.git synced 2024-09-20 11:17:15 +03:00

[sextants] fix copy-and-paste error on U+1FB06

This commit is contained in:
nick black 2021-06-12 16:16:38 -04:00 committed by Wez Furlong
parent ad0ee8f832
commit 5ca940c6d9

View File

@ -237,7 +237,7 @@ impl BlockKey {
0x1fb03 => Self::Sextants(Sextant::THREE),
0x1fb04 => Self::Sextants(Sextant::ONE | Sextant::THREE),
0x1fb05 => Self::Sextants(Sextant::TWO | Sextant::THREE),
0x1fb06 => Self::Sextants(Sextant::TWO | Sextant::TWO | Sextant::THREE),
0x1fb06 => Self::Sextants(Sextant::ONE | Sextant::TWO | Sextant::THREE),
0x1fb07 => Self::Sextants(Sextant::FOUR),
0x1fb08 => Self::Sextants(Sextant::ONE | Sextant::FOUR),
0x1fb09 => Self::Sextants(Sextant::TWO | Sextant::FOUR),