Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion typstwriter/editor.py
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ def open_file(self, path):

def open_file_dialog(self):
"""Open a dialog to open an existing file."""
filters = "Typst Files (*.typ);;Any File (*)"
filters = "Typst Files (*.typ);;Bibliography Files (*.bib *.yml);;Any File (*)"
path, cd = QtWidgets.QFileDialog.getOpenFileName(self, "Open File", state.working_directory.Value, filters)
if path:
self.open_file(path)
Expand Down