Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMickael Istria2019-10-24 13:32:36 +0000
committerMickael Istria2019-10-24 14:14:53 +0000
commit4fd07bfb4de9ce993173aa1d8d752ca27c8537e0 (patch)
tree3e2972ab5b550121d86e9f6109df4f1af2367a60
parenta357b363a671531459b1c16b99e357aff3d419e7 (diff)
downloadeclipse.platform.text-4fd07bfb4de9ce993173aa1d8d752ca27c8537e0.tar.gz
eclipse.platform.text-4fd07bfb4de9ce993173aa1d8d752ca27c8537e0.tar.xz
eclipse.platform.text-4fd07bfb4de9ce993173aa1d8d752ca27c8537e0.zip
Bug 552379 - Reduce default weight/alpha of whitespace charactersI20191024-1800
Change-Id: I869b3c90b773e38e2ebdaaf5b5a8b2bbe9aa01ea Signed-off-by: Mickael Istria <mistria@redhat.com>
-rw-r--r--org.eclipse.ui.editors/src/org/eclipse/ui/texteditor/AbstractDecoratedTextEditorPreferenceConstants.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/org.eclipse.ui.editors/src/org/eclipse/ui/texteditor/AbstractDecoratedTextEditorPreferenceConstants.java b/org.eclipse.ui.editors/src/org/eclipse/ui/texteditor/AbstractDecoratedTextEditorPreferenceConstants.java
index 8d428177804..e896f53dfba 100644
--- a/org.eclipse.ui.editors/src/org/eclipse/ui/texteditor/AbstractDecoratedTextEditorPreferenceConstants.java
+++ b/org.eclipse.ui.editors/src/org/eclipse/ui/texteditor/AbstractDecoratedTextEditorPreferenceConstants.java
@@ -724,7 +724,7 @@ public class AbstractDecoratedTextEditorPreferenceConstants {
store.setDefault(AbstractDecoratedTextEditorPreferenceConstants.EDITOR_UNDO_HISTORY_SIZE, 200);
store.setDefault(AbstractDecoratedTextEditorPreferenceConstants.EDITOR_PRINT_MARGIN, false);
- store.setDefault(AbstractDecoratedTextEditorPreferenceConstants.EDITOR_PRINT_MARGIN_COLUMN, 80);
+ store.setDefault(AbstractDecoratedTextEditorPreferenceConstants.EDITOR_PRINT_MARGIN_COLUMN, 50);
store.setDefault(AbstractDecoratedTextEditorPreferenceConstants.EDITOR_PRINT_MARGIN_ALLOW_OVERRIDE, false);
store.setDefault(AbstractDecoratedTextEditorPreferenceConstants.EDITOR_LINE_NUMBER_RULER, false);

Back to the top