Bug 548060 - Improve positioning of widgets on Annotations page

Patch Ready For Review

Change-Id: I9c2df01a49d90d2517a44eccb6842ed55fec5ee9
Signed-off-by: Andrew Obuchowicz <aobuchow@redhat.com>
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 a07d399..f3e9b86 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 @@
 		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 @@
 		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 @@
 		label.setText(TextEditorMessages.AnnotationsConfigurationBlock_color);
 		gd= new GridData();
 		gd.horizontalAlignment= GridData.BEGINNING;
-		gd.horizontalIndent= 20;
 		label.setLayoutData(gd);
 
 		fAnnotationForegroundColorEditor= new ColorSelector(optionsComposite);