PavelTurk

Results 64 issues of PavelTurk

**Describe the bug** MOXY ignores overridden getter containing collection with interface giving errors **To Reproduce** If you run this code: ``` import jakarta.xml.bind.JAXBContext; import jakarta.xml.bind.JAXBException; import jakarta.xml.bind.Marshaller; import jakarta.xml.bind.Unmarshaller; import...

Cards, tabs and other components with rounded corners are rendered with slightly visible sharp corners: ![Screenshot from 2024-09-13 17-30-45](https://github.com/user-attachments/assets/6ecfa651-1650-40d9-8b24-28dd6ecac111)

This is the code: ``` public class JavaFxTest10 extends Application { @Override public void start(Stage primaryStage) { Application.setUserAgentStylesheet(new Dracula().getUserAgentStylesheet()); ObservableList items = FXCollections.observableArrayList( "Foo 1", "Foo 2", "Foo 3", "Foo...

This is code: ``` public class JavaFxTest10 extends Application { private static record Student (int id, int mark) {}; private TableView table = new TableView(FXCollections.observableList( List.of(new Student(1, 3), new Student(2,...

bug
needs investigation