developing navigator

This commit is contained in:
Mirek Fidler 2022-07-22 01:15:29 +02:00
parent 8675efb4d2
commit 116a01ebb8
9 changed files with 58 additions and 40 deletions

View file

@ -659,7 +659,6 @@ void Ide::SyncClang()
animator = 20;
else
animator -= 3;
DDUMP(animator);
return Blend(IsDarkTheme() ? GrayColor(70) : SColorLtFace(), Color(198, 170, 0), animator);
};
Color bg = Animate(animate_current_file, animate_current_file_dir, editor.annotating || IsCurrentFileParsing());
@ -669,9 +668,6 @@ void Ide::SyncClang()
a.Add(i > cx - DPI(6) ? bg : Null);
}
editor.AnimateBar(pick(a));
DDUMP(IsIndexing());
DDUMP(Animate(animate_indexer, animate_indexer_dir, IsIndexing()));
DDUMP(Animate(animate_autocomplete, animate_autocomplete_dir, IsAutocompleteParsing()));
editor.search.SetBackground(Animate(animate_indexer, animate_indexer_dir, IsIndexing()));
display.Animate(Animate(animate_autocomplete, animate_autocomplete_dir, IsAutocompleteParsing()));
animate_phase = phase;