Uwe Peuker

Results 9 comments of Uwe Peuker

I have installed "Pandoc" and "Miktex-console" via brew. The Pandoc path is configured in the settings panel. The browser opens with URL: http://127.0.0.1:9025/index-0067.html. The files in the tmp-Path are there,...

It seems the jetty server is running, but the requested file is not available. The directory referenced by "java.io.tmpdir" contains the file described in the comments above. Using "firefox" shows...

Path path = Path.of(System.getProperty("java.io.tmpdir"), "test"); >> /var/folders/_v/bq1zqdzn0w5f4fzh7k7zdk5m0000gn/T/test Path real = path.toRealPath(); >> Ausnahme java.nio.file.NoSuchFileException: /var/folders/_v/bq1zqdzn0w5f4fzh7k7zdk5m0000gn/T/test | at UnixException.translateToIOException (UnixException.java:92) | at UnixException.rethrowAsIOException (UnixException.java:106) | at UnixException.rethrowAsIOException (UnixException.java:111) | at UnixPath.toRealPath...

> Again > > ``` > try { > Path path = Path.of(System.getProperty("java.io.tmpdir"), "test"); > path.toFile().mkdirs(); > Path real = path.toRealPath(); > > System.out.print(String.format("Path is '%s'\n", path)); > System.out.print(String.format("Real is...

Thanks for the fast response. Redefining the gitlab-URI works basically. The remaining problem: Running the Gradle build via Gitlab-CI works, because the theme and the project instance is the same....

Simple Sample: public class TestApplication extends Application { private ObservableList daten = FXCollections.observableArrayList( List.of("a", "b", "c", "a", "b", "c", "a", "b", "c", "a", "b", "c", "a", "b", "c", "a", "b",...

The problem seems to be a behavior change in "VetoableListDecorator" and the DEFAULT_CELL_HEIGHT in TableView2Skin. Initially the row height is not calculated and for larger fonts the default height ist...

Unfortunately the issue isn't restricted to TableView2. The Sample SpreadsheetView @Override public void start(Stage primaryStage) throws Exception { var mainView = new VBox(new SpreadsheetView()); mainView.setPadding(new Insets(10)); // works properly //...