Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLars Vogel2018-08-23 14:19:25 +0000
committerLars Vogel2018-08-23 14:19:25 +0000
commita8d7d8aa410e8dae2bdf78b251ed5043f378b67c (patch)
treea1f679bde95d0b09d3ab6090cc31b8ba3ae5bff4
parent947b49f271d624e26c34a1e6c5fa88e8b59b1c74 (diff)
downloadeclipse.platform.team-a8d7d8aa410e8dae2bdf78b251ed5043f378b67c.tar.gz
eclipse.platform.team-a8d7d8aa410e8dae2bdf78b251ed5043f378b67c.tar.xz
eclipse.platform.team-a8d7d8aa410e8dae2bdf78b251ed5043f378b67c.zip
Bug 429899 - [History View] - Set Link with Editor and Selection asI20180826-2000I20180825-1500I20180824-2000
default History View is automatically synchronized with the current selection is now the default Change-Id: Ifa9ba305ab03f4070f3934ec17de789c1e697f79 Signed-off-by: Patrik Suzzi <psuzzi@gmail.com>
-rw-r--r--bundles/org.eclipse.team.ui/src/org/eclipse/team/internal/ui/TeamUIPlugin.java2
1 files changed, 2 insertions, 0 deletions
diff --git a/bundles/org.eclipse.team.ui/src/org/eclipse/team/internal/ui/TeamUIPlugin.java b/bundles/org.eclipse.team.ui/src/org/eclipse/team/internal/ui/TeamUIPlugin.java
index 440b331b9..1117ea4bc 100644
--- a/bundles/org.eclipse.team.ui/src/org/eclipse/team/internal/ui/TeamUIPlugin.java
+++ b/bundles/org.eclipse.team.ui/src/org/eclipse/team/internal/ui/TeamUIPlugin.java
@@ -29,6 +29,7 @@ import org.eclipse.swt.graphics.Image;
import org.eclipse.swt.widgets.Display;
import org.eclipse.team.core.RepositoryProviderType;
import org.eclipse.team.core.subscribers.Subscriber;
+import org.eclipse.team.internal.ui.history.IFileHistoryConstants;
import org.eclipse.team.internal.ui.mapping.StreamMergerDelegate;
import org.eclipse.team.internal.ui.mapping.WorkspaceTeamStateProvider;
import org.eclipse.team.internal.ui.synchronize.SynchronizeManager;
@@ -161,6 +162,7 @@ public class TeamUIPlugin extends AbstractUIPlugin {
store.setDefault(IPreferenceIds.SYNCHRONIZING_DEFAULT_PARTICIPANT_SEC_ID, GlobalRefreshAction.NO_DEFAULT_PARTICPANT);
store.setDefault(IPreferenceIds.SYNCHRONIZING_COMPLETE_PERSPECTIVE, MessageDialogWithToggle.PROMPT);
store.setDefault(IPreferenceIds.SYNCVIEW_REMOVE_FROM_VIEW_NO_PROMPT, false);
+ store.setDefault(IFileHistoryConstants.PREF_GENERIC_HISTORYVIEW_EDITOR_LINKING, true);
// Convert the old compressed folder preference to the new layout preference
if (!store.isDefault(IPreferenceIds.SYNCVIEW_COMPRESS_FOLDERS) && !store.getBoolean(IPreferenceIds.SYNCVIEW_COMPRESS_FOLDERS)) {

Back to the top