mirror of
https://github.com/sourcegit-scm/sourcegit.git
synced 2024-11-01 13:13:21 -07:00
ux: rebase popup should always be closed after started (#327)
This commit is contained in:
parent
0450931655
commit
f41f8266d2
1 changed files with 2 additions and 2 deletions
|
@ -49,9 +49,9 @@ namespace SourceGit.ViewModels
|
||||||
|
|
||||||
return Task.Run(() =>
|
return Task.Run(() =>
|
||||||
{
|
{
|
||||||
var succ = new Commands.Rebase(_repo.FullPath, _revision, AutoStash).Exec();
|
new Commands.Rebase(_repo.FullPath, _revision, AutoStash).Exec();
|
||||||
CallUIThread(() => _repo.SetWatcherEnabled(true));
|
CallUIThread(() => _repo.SetWatcherEnabled(true));
|
||||||
return succ;
|
return true;
|
||||||
});
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue