Skip to content

Commit

Permalink
Added additional file types
Browse files Browse the repository at this point in the history
  • Loading branch information
OwenR-York committed Dec 11, 2024
1 parent d699209 commit f80cd39
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -322,7 +322,7 @@ public void widgetSelected(SelectionEvent e) {
public void widgetSelected(SelectionEvent e) {
FileDialog fileDialog = new FileDialog(getShell(), SWT.OPEN);
fileDialog.setText("Select an RDF file to add");
fileDialog.setFilterExtensions(new String[] { ".rdf", ".ttl", ".*" });
fileDialog.setFilterExtensions(new String[] { ".rdf", ".ttl", ".nt", ".nq", ".trig", ".owl", ".jsonld", ".trdf", ".rt", ".rpb", ".pbrdf", ".rj", ".trix", ".*" });
if (lastPath != null)
fileDialog.setFilterPath(lastPath);

Expand Down

0 comments on commit f80cd39

Please sign in to comment.