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 93f6507 commit bdea85fCopy full SHA for bdea85f
ui/src/main/java/edu/wpi/grip/ui/MainWindowController.java
@@ -28,6 +28,7 @@
28
import javafx.scene.layout.Region;
29
import javafx.stage.FileChooser;
30
import javafx.stage.FileChooser.ExtensionFilter;
31
+import javafx.stage.Modality;
32
import javafx.stage.Stage;
33
import org.controlsfx.control.StatusBar;
34
@@ -217,7 +218,7 @@ public void showProjectAboutDialog() throws IOException {
217
218
Parent about = FXMLLoader.load(Main.class.getResource("AboutDialog.fxml"));
219
Stage aboutDialogStage = new Stage();
220
aboutDialogStage.setScene(new Scene(about));
- aboutDialogStage.setAlwaysOnTop(true);
221
+ aboutDialogStage.initModality(Modality.APPLICATION_MODAL);
222
aboutDialogStage.show();
223
}
224
0 commit comments