Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Rennie2007-11-27 17:12:04 +0000
committerMichael Rennie2007-11-27 17:12:04 +0000
commita583d9a6e5b248e18e400b73fd0a71dd1d67c922 (patch)
treef3397d65e0d319ff805ac6c86e7e43152b99d44f /org.eclipse.debug.ui/plugin.xml
parent6c4962b88b7126c4e509a77470bf83cca42c4e22 (diff)
downloadeclipse.platform.debug-a583d9a6e5b248e18e400b73fd0a71dd1d67c922.tar.gz
eclipse.platform.debug-a583d9a6e5b248e18e400b73fd0a71dd1d67c922.tar.xz
eclipse.platform.debug-a583d9a6e5b248e18e400b73fd0a71dd1d67c922.zip
Bug 211076 Debug annotations could allow all possible text styles
Diffstat (limited to 'org.eclipse.debug.ui/plugin.xml')
-rw-r--r--org.eclipse.debug.ui/plugin.xml14
1 files changed, 11 insertions, 3 deletions
diff --git a/org.eclipse.debug.ui/plugin.xml b/org.eclipse.debug.ui/plugin.xml
index 64aa561a3..82a78e141 100644
--- a/org.eclipse.debug.ui/plugin.xml
+++ b/org.eclipse.debug.ui/plugin.xml
@@ -1804,11 +1804,15 @@ M4 = Platform-specific fourth key
label="%BreakpointMarkerPreference.label"
textPreferenceValue="false"
textPreferenceKey="breakpointIndication"
+ highlightPreferenceKey="breakpointHighlight"
+ highlightPreferenceValue="false"
verticalRulerPreferenceKey="breakpointVerticalRuler"
verticalRulerPreferenceValue="true"
overviewRulerPreferenceKey="breakpointIndicationInOverviewRuler"
icon="$nl$/icons/full/obj16/brkp_obj.gif"
- annotationImageProvider="org.eclipse.debug.internal.ui.BreakpointImageProvider">
+ annotationImageProvider="org.eclipse.debug.internal.ui.BreakpointImageProvider"
+ textStylePreferenceKey="breakpointTextStyle"
+ textStylePreferenceValue="SQUIGGLES">
</specification>
<specification
annotationImageProvider="org.eclipse.debug.internal.ui.InstructionPointerImageProvider"
@@ -1824,7 +1828,9 @@ M4 = Platform-specific fourth key
textPreferenceKey="currentIPIndication"
textPreferenceValue="false"
verticalRulerPreferenceKey="currentIPVerticalRuler"
- verticalRulerPreferenceValue="true">
+ verticalRulerPreferenceValue="true"
+ textStylePreferenceKey="currentIPTextStyle"
+ textStylePreferenceValue="NONE">
</specification>
<specification
annotationImageProvider="org.eclipse.debug.internal.ui.InstructionPointerImageProvider"
@@ -1840,7 +1846,9 @@ M4 = Platform-specific fourth key
textPreferenceKey="secondaryIPIndication"
textPreferenceValue="false"
verticalRulerPreferenceKey="secondaryIPVerticalRuler"
- verticalRulerPreferenceValue="true">
+ verticalRulerPreferenceValue="true"
+ textStylePreferenceKey="secondaryIPTextStyle"
+ textStylePreferenceValue="NONE">
</specification>
</extension>
<!-- Dynamic (String Substitution) Variables -->

Back to the top