Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDani Megert2016-12-20 13:01:49 +0000
committerDani Megert2016-12-20 13:01:49 +0000
commit0be1fa7ad0ec0e4a76608709ac6c2cd2a305270a (patch)
tree453121dae2660df7f80e03e4aca671e98ec7ea64
parent7d8417bb93eedbb2b682247e38b149cc700a0281 (diff)
downloadeclipse.platform.text-0be1fa7ad0ec0e4a76608709ac6c2cd2a305270a.tar.gz
eclipse.platform.text-0be1fa7ad0ec0e4a76608709ac6c2cd2a305270a.tar.xz
eclipse.platform.text-0be1fa7ad0ec0e4a76608709ac6c2cd2a305270a.zip
Fixed bug 509474: [preferences][quick diff][rulers] Show difference in overview rules should be on by default
-rw-r--r--org.eclipse.ui.editors/plugin.xml8
1 files changed, 4 insertions, 4 deletions
diff --git a/org.eclipse.ui.editors/plugin.xml b/org.eclipse.ui.editors/plugin.xml
index c1b5db34960..d7e1b98fed7 100644
--- a/org.eclipse.ui.editors/plugin.xml
+++ b/org.eclipse.ui.editors/plugin.xml
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<?eclipse version="3.0"?>
<!-- ====================================================================== -->
-<!-- Copyright (c) 2002, 2015 IBM Corporation and others. -->
+<!-- Copyright (c) 2002, 2016 IBM Corporation and others. -->
<!-- All rights reserved. This program and the accompanying materials -->
<!-- are made available under the terms of the Eclipse Public License v1.0 -->
<!-- which accompanies this distribution, and is available at -->
@@ -681,7 +681,7 @@
colorPreferenceKey="changeIndicationColor"
showInNextPrevDropdownToolbarActionKey="showChangeInNextPrevDropdownToolbarAction"
contributesToHeader="false"
- overviewRulerPreferenceValue="false"
+ overviewRulerPreferenceValue="true"
presentationLayer="0"
label="%changes.label"
textPreferenceValue="false"
@@ -702,7 +702,7 @@
colorPreferenceKey="additionIndicationColor"
showInNextPrevDropdownToolbarActionKey="showAdditionInNextPrevDropdownToolbarAction"
contributesToHeader="false"
- overviewRulerPreferenceValue="false"
+ overviewRulerPreferenceValue="true"
presentationLayer="0"
label="%additions.label"
textPreferenceValue="false"
@@ -723,7 +723,7 @@
colorPreferenceKey="deletionIndicationColor"
showInNextPrevDropdownToolbarActionKey="showDeletionInNextPrevDropdownToolbarAction"
contributesToHeader="false"
- overviewRulerPreferenceValue="false"
+ overviewRulerPreferenceValue="true"
presentationLayer="0"
label="%deletions.label"
textPreferenceValue="false"

Back to the top