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 610a37b commit e1d7ff8Copy full SHA for e1d7ff8
ui/src/main/java/edu/wpi/grip/ui/MainWindowController.java
@@ -111,6 +111,9 @@ public void openProject() throws IOException {
111
if (showConfirmationDialogAndWait()) {
112
final FileChooser fileChooser = new FileChooser();
113
fileChooser.setTitle("Open Project");
114
+ fileChooser.getExtensionFilters().addAll(
115
+ new ExtensionFilter("GRIP File", "*.grip"),
116
+ new ExtensionFilter("All Files", "*.*"));
117
118
project.getFile().ifPresent(file -> fileChooser.setInitialDirectory(file.getParentFile()));
119
0 commit comments