Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins')
-rwxr-xr-xplugins/infra/textedit/org.eclipse.papyrus.infra.textedit.representation.architecture/api/org/eclipse/papyrus/infra/textedit/representation/architecture/AbstractCreateTextDocumentEditorCommand.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/infra/textedit/org.eclipse.papyrus.infra.textedit.representation.architecture/api/org/eclipse/papyrus/infra/textedit/representation/architecture/AbstractCreateTextDocumentEditorCommand.java b/plugins/infra/textedit/org.eclipse.papyrus.infra.textedit.representation.architecture/api/org/eclipse/papyrus/infra/textedit/representation/architecture/AbstractCreateTextDocumentEditorCommand.java
index 7d73b34c8db..a488babdbef 100755
--- a/plugins/infra/textedit/org.eclipse.papyrus.infra.textedit.representation.architecture/api/org/eclipse/papyrus/infra/textedit/representation/architecture/AbstractCreateTextDocumentEditorCommand.java
+++ b/plugins/infra/textedit/org.eclipse.papyrus.infra.textedit.representation.architecture/api/org/eclipse/papyrus/infra/textedit/representation/architecture/AbstractCreateTextDocumentEditorCommand.java
@@ -98,7 +98,7 @@ public abstract class AbstractCreateTextDocumentEditorCommand implements ICreate
if (null == domain) {
return null;
}
- final CreateTextDocumentViewCommand command = createTextDocumentEditorCreationCommand(domain, textDocumentRepresentation, textDocumentName, semanticContext, openAfterCreation);
+ final CreateTextDocumentViewCommand command = createTextDocumentEditorCreationCommand(domain, textDocumentRepresentation, textDocumentName, semanticContext, graphicalContext, openAfterCreation);
domain.getCommandStack().execute(command);
return command.getCreatedEditorView();
}

Back to the top