Skip to content
Snippets Groups Projects
Commit ef05481f authored by Johannes Mey's avatar Johannes Mey
Browse files

Merge branch 'bugfix/indentation-wrong-when-creating-a-new-line' into 'develop'

Resolve "Indentation wrong when creating a new line"

See merge request !9
parents 4f9ecf22 3f3d815b
No related branches found
No related tags found
1 merge request!9Resolve "Indentation wrong when creating a new line"
Pipeline #12473 passed
......@@ -89,6 +89,12 @@ public class AspectBlock extends AbstractBlock {
return myNode.getFirstChildNode() == null;
}
@Override
public boolean isIncomplete() {
// FIXME this is wrong, but a real fix would require a complete rewrite overriding more methods
return true;
}
private static class AroundBlockBlock extends LeafBlock {
private final TextRange myRange;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment