JFormDesigner
JFormDesigner
I think the gaps are larger since this commit 3dcc68737bec6dfe188a4bad8db372be280283c4 You can restore the old gaps in your app: ``` java PlatformDefaults.setRelatedGap(LPX4, LPY4); PlatformDefaults.setUnrelatedGap(LPX7, LPY9); PlatformDefaults.setParagraphGap(LPX14, LPY14); PlatformDefaults.setIndentGap(LPX9, LPY9); PlatformDefaults.setGridCellGap(LPX4,...
This is because Swing in Java 9 scales on HiDPI screens. And MigLayout additionally scales, which results in too large spacing. A simple workaround is to "disable" MigLayout scaling for...
@mikaelgrev thanks for the hint. Sounds like a much better solution 👍 I'll try it and file a PR...
Sure, using static imports and additional helper function can make the code shorter. I'll have a look... Moving the shortcut keys to `messages.properties` makes them only localizable, but not configurable...
Yes, a 'Shortcut Keys' tab in the Options dialog would be nice.
Yes, I'm already working on this on the [feature/spellchecker](https://github.com/JFormDesigner/markdown-writer-fx/tree/feature/spellchecker) branch. Currently it always checks the whole text (which is slow) and includes markdown characters (which gives bad results). In the...
Made some progress on the [feature/spellchecker](https://github.com/JFormDesigner/markdown-writer-fx/tree/feature/spellchecker) branch: - ignore markdown formatting characters in spell checking - check only paragraphs, lists, block quotes and headings (ignore code blocks, tables, other) -...
Yes, this is a known issue. **MWFX 0.11 requires Java 8**. Even Java 9 will not work because ControlsFX 9.0.0 is required for Java 9, but MWFX 0.11 ships with...
Yes, but have to wait until all dependencies support Java 9. I know that RichTextFX does not yet support Java 9 (see https://github.com/TomasMikula/RichTextFX/issues/270). And maybe also Flowless.
Details?