Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Obuchowicz2019-06-13 16:36:42 +0000
committerDani Megert2019-06-16 14:15:41 +0000
commit925e3c83512b8467fdbfc8ebb45819c82c18be01 (patch)
treeaceb7acfe6a04eb4f43dd34e63557c61afbdf60d
parentf26b0ea27485b16f074340e3e5a89bdb4b341abf (diff)
downloadeclipse.platform.text-925e3c83512b8467fdbfc8ebb45819c82c18be01.tar.gz
eclipse.platform.text-925e3c83512b8467fdbfc8ebb45819c82c18be01.tar.xz
eclipse.platform.text-925e3c83512b8467fdbfc8ebb45819c82c18be01.zip
Bug 548060 - Improve positioning of widgets on Annotations pageI20190616-1800
Patch Ready For Review Change-Id: I9c2df01a49d90d2517a44eccb6842ed55fec5ee9 Signed-off-by: Andrew Obuchowicz <aobuchow@redhat.com>
-rw-r--r--org.eclipse.ui.editors/src/org/eclipse/ui/internal/editors/text/AnnotationsConfigurationBlock.java4
1 files changed, 0 insertions, 4 deletions
diff --git a/org.eclipse.ui.editors/src/org/eclipse/ui/internal/editors/text/AnnotationsConfigurationBlock.java b/org.eclipse.ui.editors/src/org/eclipse/ui/internal/editors/text/AnnotationsConfigurationBlock.java
index a07d3991eb1..f3e9b86722c 100644
--- a/org.eclipse.ui.editors/src/org/eclipse/ui/internal/editors/text/AnnotationsConfigurationBlock.java
+++ b/org.eclipse.ui.editors/src/org/eclipse/ui/internal/editors/text/AnnotationsConfigurationBlock.java
@@ -244,7 +244,6 @@ class AnnotationsConfigurationBlock implements IPreferenceConfigurationBlock {
gd= new GridData(GridData.FILL_HORIZONTAL);
gd.horizontalAlignment= GridData.BEGINNING;
gd.horizontalSpan= 2;
- gd.horizontalIndent= 20;
fShowInVerticalRulerCheckBox.setLayoutData(gd);
fShowInOverviewRulerCheckBox= new Button(optionsComposite, SWT.CHECK);
@@ -252,14 +251,12 @@ class AnnotationsConfigurationBlock implements IPreferenceConfigurationBlock {
gd= new GridData(GridData.FILL_HORIZONTAL);
gd.horizontalAlignment= GridData.BEGINNING;
gd.horizontalSpan= 2;
- gd.horizontalIndent= 20;
fShowInOverviewRulerCheckBox.setLayoutData(gd);
fShowInTextCheckBox= new Button(optionsComposite, SWT.CHECK);
fShowInTextCheckBox.setText(TextEditorMessages.AnnotationsConfigurationBlock_showInText);
gd= new GridData(GridData.FILL_HORIZONTAL);
gd.horizontalAlignment= GridData.BEGINNING;
- gd.horizontalIndent= 20;
fShowInTextCheckBox.setLayoutData(gd);
@@ -278,7 +275,6 @@ class AnnotationsConfigurationBlock implements IPreferenceConfigurationBlock {
label.setText(TextEditorMessages.AnnotationsConfigurationBlock_color);
gd= new GridData();
gd.horizontalAlignment= GridData.BEGINNING;
- gd.horizontalIndent= 20;
label.setLayoutData(gd);
fAnnotationForegroundColorEditor= new ColorSelector(optionsComposite);

Back to the top