nlisker

Results 54 issues of nlisker

Following https://stackoverflow.com/questions/74097583/combobox-makes-selection-with-touch-events-difficult, a value of 1 causes touch events to not register correctly on some devices (tested on 2 Samsung Galaxys). A value of 2 works better. I suggest changing...

bug

Changes the value of `-Dmonocle.input.touchRadius` from 1 to 2. Fixes #1183 ### Progress - [ ] Change must not contain extraneous whitespace - [ ] License header year is updated,...

The [ClientExtension](https://github.com/gluonhq/gluonfx-gradle-plugin/blob/master/src/main/java/com/gluonhq/gradle/ClientExtension.java) class uses the deprecated [ConfigureUtil](https://docs.gradle.org/current/javadoc/org/gradle/util/ConfigureUtil.html) class in Gradle that will be removed in Gradle 9. This will stop users from upgrading to Gradle 9.

When running on Java 21, these warnings are displayed: ``` WARNING: A Java agent has been loaded dynamically (C:\scenicview\lib\scenicview.jar) WARNING: If a serviceability tool is in use, please run with...

Dependencies declared as `implementation files("lib/my.jar")` are not added to the module path even if `my.jar` declares a module-info. ### Expected Behavior The jar should be added to the module path,...

a:bug :beetle:

The page https://openjfx.io/openjfx-docs/#gradle needs to update the compatibility table at the bottom.

Sealed classes are coming to Java soon. Jackson can use them to remove the need to specify `@JsonSubTypes` because they are known from the sealing class: ```java @JsonSubTypes({ @JsonSubTypes.Type(value =...

```java record Point(int x, int y) {} Map map = ... ``` Because the map key is a composite class, Jackson needs a deserializer like ```java @JsonDeserialize(keyUsing = Point.Deserializer.class) record...

When using ``` options = ['--strip-debug', '--compress', '2', '--no-header-files', '--no-man-pages'] ``` the option `'--compress', '2'` is deprecated. It should be replaced with `"--compress", "zip-6"`, where 6 is the equivalent compression...

The `Accuracy` enum encapsulates predefined distance and time filters. `Parameters` can either take an `Parameters` (which it does), or take custom time and distance parameters. The problem is that there...