hakpaang

Results 4 comments of hakpaang

The examples provided by customstage can reproduce this situation. ``` package v1_0_0; import javafx.application.Application; import javafx.fxml.FXMLLoader; import javafx.stage.Stage; import lk.vivoxalabs.customstage.CustomStage; import lk.vivoxalabs.customstage.CustomStageBuilder; /** * Created by oshan on 08-Mar-18. *...

java version "1.8.0_202" CustomStage version "1.3.2"

I think it might be a bug in JDK. All stage styles except StageStyle.DECORATED have this error. ``` import javafx.application.Application; import javafx.scene.Scene; import javafx.scene.control.Label; import javafx.scene.layout.StackPane; import javafx.stage.Stage; import javafx.stage.StageStyle;...

I did use CustomStage ,like this ``` @Override public void start(Stage primaryStage) throws IOException { CustomStage stage = new CustomStageBuilder() .setWindowTitle("CustomStage example") .build(); stage.show(); } ``` I mean, the same...