mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
Fix init issue
This commit is contained in:
parent
d9e89ad610
commit
d537ce22f8
1 changed files with 3 additions and 3 deletions
|
|
@ -8,9 +8,9 @@ namespace Flow.Launcher.Infrastructure
|
|||
{
|
||||
private bool constructed;
|
||||
|
||||
// Asssuming one original item maps to multi translated items
|
||||
// list[i] is the last translated index + 1 of original index i
|
||||
private readonly List<int> originalToTranslated = [];
|
||||
// Asssuming one original item maps to multi translated items
|
||||
// list[i] is the last translated index + 1 of original index i
|
||||
private readonly List<int> originalToTranslated = new List<int>();
|
||||
|
||||
public void AddNewIndex(int translatedIndex, int length)
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in a new issue