Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Valenta2004-03-23 20:23:16 +0000
committerMichael Valenta2004-03-23 20:23:16 +0000
commit20e193ac7a931aef690aa540ef6f22cb8f5fe908 (patch)
treea163e0fa865b628d97abc92c651a388bc42b518c
parent6f1151d3ae09142f85063d752aac5fe888683097 (diff)
downloadeclipse.platform.team-20e193ac7a931aef690aa540ef6f22cb8f5fe908.tar.gz
eclipse.platform.team-20e193ac7a931aef690aa540ef6f22cb8f5fe908.tar.xz
eclipse.platform.team-20e193ac7a931aef690aa540ef6f22cb8f5fe908.zip
Change CVS default to background
-rw-r--r--bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/operations/CVSOperation.java8
1 files changed, 8 insertions, 0 deletions
diff --git a/bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/operations/CVSOperation.java b/bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/operations/CVSOperation.java
index 748c06c7e..3d49bdce9 100644
--- a/bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/operations/CVSOperation.java
+++ b/bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/operations/CVSOperation.java
@@ -253,4 +253,12 @@ public abstract class CVSOperation extends TeamOperation {
public void setShell(Shell shell) {
this.shell = shell;
}
+
+ /* (non-Javadoc)
+ * @see org.eclipse.team.ui.TeamOperation#canRunAsJob()
+ */
+ protected boolean canRunAsJob() {
+ // Put CVS jobs in the background by default.
+ return true;
+ }
}

Back to the top