mirror of
https://github.com/Flow-Launcher/Flow.Launcher.git
synced 2026-03-11 08:54:32 +00:00
add controllable argument to allow stop
This commit is contained in:
parent
4684a38883
commit
bd66e56e7c
1 changed files with 2 additions and 2 deletions
|
|
@ -90,7 +90,7 @@ namespace Flow.Launcher
|
|||
|
||||
if (_viewModel.ProgressBarVisibility == Visibility.Visible && isProgressBarStoryboardPaused)
|
||||
{
|
||||
_progressBarStoryboard.Begin(ProgressBar);
|
||||
_progressBarStoryboard.Begin(ProgressBar, true);
|
||||
isProgressBarStoryboardPaused = false;
|
||||
}
|
||||
}
|
||||
|
|
@ -116,7 +116,7 @@ namespace Flow.Launcher
|
|||
else if (_viewModel.MainWindowVisibility == Visibility.Visible &&
|
||||
isProgressBarStoryboardPaused)
|
||||
{
|
||||
_progressBarStoryboard.Begin(ProgressBar);
|
||||
_progressBarStoryboard.Begin(ProgressBar, true);
|
||||
isProgressBarStoryboardPaused = false;
|
||||
}
|
||||
}, System.Windows.Threading.DispatcherPriority.Render);
|
||||
|
|
|
|||
Loading…
Reference in a new issue