mirror of
https://github.com/sourcegit-scm/sourcegit.git
synced 2024-12-24 20:57:19 -08:00
style<Histories>: change searchbar anim time to 0.1 second to avoid flicking
This commit is contained in:
parent
5791ca8fcb
commit
aed3c10aa4
1 changed files with 3 additions and 3 deletions
|
@ -167,13 +167,13 @@ namespace SourceGit.Views.Widgets {
|
||||||
ThicknessAnimation anim = new ThicknessAnimation();
|
ThicknessAnimation anim = new ThicknessAnimation();
|
||||||
anim.From = new Thickness(0);
|
anim.From = new Thickness(0);
|
||||||
anim.To = new Thickness(0, -32, 0, 0);
|
anim.To = new Thickness(0, -32, 0, 0);
|
||||||
anim.Duration = TimeSpan.FromSeconds(.3);
|
anim.Duration = TimeSpan.FromSeconds(.1);
|
||||||
searchBar.BeginAnimation(MarginProperty, anim);
|
searchBar.BeginAnimation(MarginProperty, anim);
|
||||||
} else {
|
} else {
|
||||||
ThicknessAnimation anim = new ThicknessAnimation();
|
ThicknessAnimation anim = new ThicknessAnimation();
|
||||||
anim.From = new Thickness(0, -32, 0, 0);
|
anim.From = new Thickness(0, -32, 0, 0);
|
||||||
anim.To = new Thickness(0);
|
anim.To = new Thickness(0);
|
||||||
anim.Duration = TimeSpan.FromSeconds(.3);
|
anim.Duration = TimeSpan.FromSeconds(.1);
|
||||||
searchBar.BeginAnimation(MarginProperty, anim);
|
searchBar.BeginAnimation(MarginProperty, anim);
|
||||||
|
|
||||||
txtSearch.Focus();
|
txtSearch.Focus();
|
||||||
|
@ -195,7 +195,7 @@ namespace SourceGit.Views.Widgets {
|
||||||
ThicknessAnimation anim = new ThicknessAnimation();
|
ThicknessAnimation anim = new ThicknessAnimation();
|
||||||
anim.From = new Thickness(0);
|
anim.From = new Thickness(0);
|
||||||
anim.To = new Thickness(0, -32, 0, 0);
|
anim.To = new Thickness(0, -32, 0, 0);
|
||||||
anim.Duration = TimeSpan.FromSeconds(.3);
|
anim.Duration = TimeSpan.FromSeconds(.1);
|
||||||
searchBar.BeginAnimation(MarginProperty, anim);
|
searchBar.BeginAnimation(MarginProperty, anim);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue