Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorkchong2006-11-28 21:23:45 +0000
committerkchong2006-11-28 21:23:45 +0000
commitd4719e20312539b5f7404b258092bb3d4154d120 (patch)
tree68721b39606e6716b8067422901c2e40d49ea81e
parentc6966b52ce6c603494e7235f427530daff748932 (diff)
downloadwebtools.sourceediting-d4719e20312539b5f7404b258092bb3d4154d120.tar.gz
webtools.sourceediting-d4719e20312539b5f7404b258092bb3d4154d120.tar.xz
webtools.sourceediting-d4719e20312539b5f7404b258092bb3d4154d120.zip
[155879] Extension elements added with extension tab not indented correctly
-rw-r--r--bundles/org.eclipse.wst.xsd.ui/src-common/org/eclipse/wst/xsd/ui/internal/common/commands/AddExtensionElementCommand.java1
1 files changed, 1 insertions, 0 deletions
diff --git a/bundles/org.eclipse.wst.xsd.ui/src-common/org/eclipse/wst/xsd/ui/internal/common/commands/AddExtensionElementCommand.java b/bundles/org.eclipse.wst.xsd.ui/src-common/org/eclipse/wst/xsd/ui/internal/common/commands/AddExtensionElementCommand.java
index d46380a43d..b1d5ab7b01 100644
--- a/bundles/org.eclipse.wst.xsd.ui/src-common/org/eclipse/wst/xsd/ui/internal/common/commands/AddExtensionElementCommand.java
+++ b/bundles/org.eclipse.wst.xsd.ui/src-common/org/eclipse/wst/xsd/ui/internal/common/commands/AddExtensionElementCommand.java
@@ -42,6 +42,7 @@ public class AddExtensionElementCommand extends AddExtensionCommand
beginRecording(component.getElement());
super.execute();
addAnnotationSet(component.getSchema(), extensionsSchemaSpec);
+ formatChild(component.getElement());
}
finally
{

Back to the top