Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKonrad Kügler2014-04-30 18:22:14 +0000
committerMatthias Sohn2014-04-30 19:52:59 +0000
commit68f0c309a4b8a9f3e00bdefb623234980deda12a (patch)
tree57c0de66bda85387f4b2ebe8916b338ee6b717ec
parentd9149cded467e75c0896bce702a0157ecdce90b9 (diff)
downloadegit-68f0c309a4b8a9f3e00bdefb623234980deda12a.tar.gz
egit-68f0c309a4b8a9f3e00bdefb623234980deda12a.tar.xz
egit-68f0c309a4b8a9f3e00bdefb623234980deda12a.zip
Disable "Show additional refs" by default
The additional labels seem to be confusing for novice (E)Git users. Especially ORIG_HEAD after a rebase is problematic, because it causes the History view to show the commits before the rebase, as well as the rebased commits. Change-Id: Icb9ddd196e43cc8301f87e30883cad4bf9065817 Signed-off-by: Konrad Kügler <swamblumat-eclipsebugs@yahoo.de>
-rw-r--r--org.eclipse.egit.ui/src/org/eclipse/egit/ui/PluginPreferenceInitializer.java3
1 files changed, 2 insertions, 1 deletions
diff --git a/org.eclipse.egit.ui/src/org/eclipse/egit/ui/PluginPreferenceInitializer.java b/org.eclipse.egit.ui/src/org/eclipse/egit/ui/PluginPreferenceInitializer.java
index 12519d2697..1b3d58bf93 100644
--- a/org.eclipse.egit.ui/src/org/eclipse/egit/ui/PluginPreferenceInitializer.java
+++ b/org.eclipse.egit.ui/src/org/eclipse/egit/ui/PluginPreferenceInitializer.java
@@ -48,7 +48,8 @@ public class PluginPreferenceInitializer extends AbstractPreferenceInitializer {
store.setDefault(UIPreferences.RESOURCEHISTORY_SHOW_REV_COMMENT, true);
store.setDefault(UIPreferences.RESOURCEHISTORY_SHOW_TOOLTIPS, false);
store.setDefault(UIPreferences.RESOURCEHISTORY_SHOW_ALL_BRANCHES, false);
- store.setDefault(UIPreferences.RESOURCEHISTORY_SHOW_ADDITIONAL_REFS, true);
+ store.setDefault(UIPreferences.RESOURCEHISTORY_SHOW_ADDITIONAL_REFS,
+ false);
store.setDefault(UIPreferences.RESOURCEHISTORY_FOLLOW_RENAMES, true);
store.setDefault(UIPreferences.RESOURCEHISTORY_COMPARE_MODE, false);

Back to the top