Karl T
Karl T
Current implementation of smooth scrolling (issue #27) works only with trackpads or when the mouse (driver) supports high-resolution wheels. Otherwise the scroll area "jumps" some lines up or down.
isAutoActivateOkay() checks the character after the caret, but shouldn't it check the character **before** the caret? https://github.com/bobbylight/AutoComplete/blob/da75dd9c0362ec49c64c6d28338ffa0e892873c8/AutoComplete/src/main/java/org/fife/ui/autocomplete/CompletionProviderBase.java#L166-L177
For some unknown reason, `fatJar` in Kobalt 1.0.110 is broken for my project: https://github.com/DevCharly/kobalt-ant In the past I used Kobalt 0.839 and it worked. The build creates two JARs: -...
When removing or renaming source files, then neither `javac` nor `kotlinc` does remove obsolete `.class` files from the `kobaltBuild/classes` folder. The same happens if removing or renaming a resource file...
When I run an application, which outputs several kilobytes to `System.out`, with the `run` task, Kobalt blocks for 30 seconds and then fails. The problem seems that Kobalt does not...
This PR modernizes the FlatLaf icons used in `JFileChooser`, `JOptionPane` and `JTree`. The icons are now rounded and outlined. The changes were inspired by macOS Big Sur/Montery, Windows 11 and...
Update FlatLaf to v2.5. Changes: https://github.com/JFormDesigner/FlatLaf/releases/tag/2.5
This PR brings "full window content" mode to FlatLaf window decorations on Windows 10/11 (and on Linux). For macOS see [here](https://www.formdev.com/flatlaf/macos/#full_window_content). Full window content mode allows you to extend the...
This PR enables using "rounded" selection for table selection. This is not yet used in any theme, but intended to be used in the future. ### Examples #### Row selection...
### Description of the problem: The SelfAssignment checker complains about following: ```java float width = 123.456f; width = (int) width; // value of width is now 123 ``` ### What...