Phil Beauvoir
Phil Beauvoir
You can do this with the Navigator. After stages 1-3: 4 - I go to View2. I select AC1 and ensure that the Navigator is open. In the Navigator I...
If the node is contained inside of another one, then deleting the parent one will always delete the contained node(s). Dragging the child nodes out and deleting the parent should...
There are many selection options such as "Select Contained Nodes" in the selection tool from the palette,
The 10 pixel border is hard-coded into this. I could remove that border in the code but that might break other users' usage of it (also used in reports). If...
Yes please send the model to info at archimatetool.com and also the error log. The Error Log can be accessed in Archi by selecting the “About Archi” menu item. In...
Thanks for the model which I've analysed. 1. There is a stack overflow error caused by an infinite loop in the Label Renderer 2. The model opens in Archi 4.9.1...
The strange thing is if I replace all documentation fields with placeholder text like "Some text" the error doesn't occur.
I've narrowed it down to a simple reproducible model test case (attached here). It's caused by a combination of a long documentation field and this label expression leading to stack...
Something to do with these lines in `IfRenderer`: ``` private static final String acceptedChar = "(?:[^:\\}\\\\]|\\\\:|\\\\\\\\)"; private static final String textWithoutExpressions = "(?:\\\\:|" + notStartOfExpression + acceptedChar + ")*"; ```
A simpler way to reproduce: `${if:A long text string:Hello}` Where "A long text string" is replaced by a long text string (say > 1000 chars or more)