File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
ui/src/main/java/edu/wpi/grip/ui Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -93,8 +93,6 @@ public void init() throws IOException {
9393 notifyPreloader (new Preloader .ProgressNotification (0.3 ));
9494 }
9595
96- operations .addOperations ();
97- cvOperations .addOperations ();
9896 notifyPreloader (new Preloader .ProgressNotification (0.45 ));
9997 server .addHandler (pipelineSwitcher );
10098 server .start ();
@@ -120,6 +118,9 @@ public void start(Stage stage) throws IOException {
120118 root = FXMLLoader .load (Main .class .getResource ("MainWindow.fxml" ), null , null ,
121119 injector ::getInstance );
122120 root .setStyle ("-fx-font-size: " + DPIUtility .FONT_SIZE + "px" );
121+
122+ operations .addOperations ();
123+ cvOperations .addOperations ();
123124 notifyPreloader (new Preloader .ProgressNotification (0.9 ));
124125
125126 // If this isn't here this can cause a deadlock on windows. See issue #297
You can’t perform that action at this time.
0 commit comments