Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlexander Kurtakov2020-09-16 08:22:54 +0000
committerAlexander Kurtakov2020-09-16 08:36:53 +0000
commit102d99ea0e41e66f955e4056963672e4c6e3ee68 (patch)
tree9a8ab0a79fe142362f5720d8f37aacbefaa2c345
parent67a7aa080f7782b25c05d335761cfd35df36aa1b (diff)
downloadeclipse.platform.team-102d99ea0e41e66f955e4056963672e4c6e3ee68.tar.gz
eclipse.platform.team-102d99ea0e41e66f955e4056963672e4c6e3ee68.tar.xz
eclipse.platform.team-102d99ea0e41e66f955e4056963672e4c6e3ee68.zip
Change-Id: Ib2fe5566716dcc45da3a1ebc4dc10be8f77fc862 Signed-off-by: Alexander Kurtakov <akurtako@redhat.com>
-rw-r--r--bundles/org.eclipse.team.ui/src/org/eclipse/team/internal/ui/synchronize/AbstractSynchronizePage.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/bundles/org.eclipse.team.ui/src/org/eclipse/team/internal/ui/synchronize/AbstractSynchronizePage.java b/bundles/org.eclipse.team.ui/src/org/eclipse/team/internal/ui/synchronize/AbstractSynchronizePage.java
index 0528a8d41..4721bb42d 100644
--- a/bundles/org.eclipse.team.ui/src/org/eclipse/team/internal/ui/synchronize/AbstractSynchronizePage.java
+++ b/bundles/org.eclipse.team.ui/src/org/eclipse/team/internal/ui/synchronize/AbstractSynchronizePage.java
@@ -245,7 +245,7 @@ public abstract class AbstractSynchronizePage extends Page implements ISynchroni
};
}
if (key == IShowInTargetList.class) {
- return (T) (IShowInTargetList) () -> new String[] { IPageLayout.ID_RES_NAV };
+ return (T) (IShowInTargetList) () -> new String[] { IPageLayout.ID_PROJECT_EXPLORER };
}
return null;
}

Back to the top