Michael Kunz
Michael Kunz
Unadvising COM events needs to be done in the context of the owning COM object just as advising them needs to. Therefor closing an EventProxy has to perform the actual...
move entities.properties into util-sequence that it is accessible from Html5Entities
When formatting a `WikiLink` or `WikiImage` the link is modified: ``` [[my Page#anchor]] ``` turns into ``` [[my Pagemy Page#anchor]] ``` WikiLinks with explicit text or without anchor are fine....
`LongEdgeJoiner` tries to get the in/outgoing edge, which is not attached to the port. I guess it was removed by `LayerConstraintPreprocessor`. ``` algorithm: layered wrapping.strategy: SINGLE_EDGE wrapping.correctionFactor: 0.0001 // force...
This change enables inline formatting in admonitions. For this a new `AdmonitionTitle` node is introduced as the first child of an `AdmonitionBlock`. I'm not happy about the inlined `visitChildren` in...
InteractiveCrossingMinimizer fails because InternalProperties.ORIGINAL_BENDPOINTS isn't transformed
`GraphTransformer` doesn't transform some properties, i.e. [ORIGINAL_BENDPOINTS](https://github.com/eclipse/elk/blob/ea9838707d6c884a4065b861f9e6151e4a6567a2/plugins/org.eclipse.elk.alg.layered/src/org/eclipse/elk/alg/layered/options/InternalProperties.java#L89) which is used for [placing the edges with the interactive crossing minimizer](github.com/eclipse/elk/blob/3630e23fa5abc253233296e2bdf5e18828e5dba7/plugins/org.eclipse.elk.alg.layered/src/org/eclipse/elk/alg/layered/p3order/InteractiveCrossingMinimizer.java#L161). This leads to the edge layout to go completely haywire for...
`LabelDummyInserter` should provide a position for the dummy node, so that interactive layout can produce usable results, otherwise the labels will be placed on the upper end of the graph...
**Describe the bug** Using a linear `DefaultNumericAxis` and setting `setAutoRangeRounding(true)` will always round to the next best integer number instead of the tick unit. https://github.com/fair-acc/chart-fx/blob/7908d4c157abda8f629665a3bf19757490d796a4/chartfx-chart/src/main/java/io/fair_acc/chartfx/axes/spi/DefaultNumericAxis.java#L353 `LinearAxis` doesn't have a transform...