We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d6ce592 commit 04db5dbCopy full SHA for 04db5db
src/main/java/javafxlibrary/testapps/FinderApp.java
@@ -6,11 +6,17 @@
6
import javafx.scene.Scene;
7
import javafx.stage.Stage;
8
import javafx.stage.StageStyle;
9
+import org.testfx.api.FxToolkit;
10
11
public class FinderApp extends Application {
12
13
int scale = 200;
14
15
+ @Override
16
+ public void init() throws Exception {
17
+ FxToolkit.registerStage(() -> new Stage());
18
+ }
19
+
20
@Override
21
public void start(Stage firstStage) throws Exception {
22
Stage secondStage = new Stage();
0 commit comments