[bisq-network/bisq] Fix performacne issues with Java 10 version of ProgressIndicator (#1692)

Manfred Karrer notifications at github.com
Tue Sep 18 20:10:19 UTC 2018


Here is a testapp:

public class ProgressIndicatorTestApp extends Application {


    @Override
    public void start(Stage stage) {

        FlowPane root = new FlowPane();

        FlowPane pane = new FlowPane();

        Button add = new Button("add");
        add.setOnAction(actionEvent -> {
            pane.getChildren().add(new ProgressIndicator());
        });

        Button remove = new Button("remove");
        remove.setOnAction(actionEvent -> {
            pane.getChildren().clear();
        });

        root.getChildren().add(add);
        root.getChildren().add(remove);
        root.getChildren().add(pane);

        Scene scene = new Scene(root, 300, 200);

        stage.setScene(scene);
        stage.show();
    }

}

-- 
You are receiving this because you are subscribed to this thread.
Reply to this email directly or view it on GitHub:
https://github.com/bisq-network/bisq/issues/1692#issuecomment-422534386
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.bisq.network/pipermail/bisq-github/attachments/20180918/0f42ea60/attachment.html>


More information about the bisq-github mailing list