Skip to content

Commit d6a3bbe

Browse files
AustinShalitJLLeitschuh
authored andcommitted
Missing operations hot fix (#642)
1 parent c05adc1 commit d6a3bbe

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

ui/src/main/java/edu/wpi/grip/ui/Main.java

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)