From 8f9a57b653df99554e924d09e4edd20f4cfcc86b Mon Sep 17 00:00:00 2001 From: Kirill Likhodedov Date: Mon, 23 Apr 2012 15:25:44 +0400 Subject: [PATCH] IDEA-84886 Git pull in background. --- plugins/git4idea/src/git4idea/actions/GitPull.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/git4idea/src/git4idea/actions/GitPull.java b/plugins/git4idea/src/git4idea/actions/GitPull.java index 9dad1b3a5f9c..23c62a27760c 100644 --- a/plugins/git4idea/src/git4idea/actions/GitPull.java +++ b/plugins/git4idea/src/git4idea/actions/GitPull.java @@ -68,7 +68,7 @@ public class GitPull extends GitRepositoryAction { final Label beforeLabel = LocalHistory.getInstance().putSystemLabel(project, "Before update"); final AtomicReference handlerReference = new AtomicReference(); - new Task.Modal(project, GitBundle.message("pulling.title", dialog.getRemote()), true) { + new Task.Backgroundable(project, GitBundle.message("pulling.title", dialog.getRemote()), true) { @Override public void run(@NotNull ProgressIndicator indicator) { final GitRepositoryManager repositoryManager = GitUtil.getRepositoryManager(myProject);