Skip to content

Commit

Permalink
Addresses #951 and adds nd2 as an input to gui
Browse files Browse the repository at this point in the history
  • Loading branch information
chriski777 committed May 7, 2023
1 parent 7d52b30 commit bea38a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion suite2p/gui/rungui.py
Original file line number Diff line number Diff line change
Expand Up @@ -234,7 +234,7 @@ def create_buttons(self):
qlabel.setToolTip('File format (selects which parser to use)')
self.layout.addWidget(qlabel,1,0,1,1)
self.inputformat = QComboBox()
[self.inputformat.addItem(f) for f in ['tif','bruker','sbx', 'h5','mesoscan','haus']]
[self.inputformat.addItem(f) for f in ['tif','bruker','sbx', 'h5','mesoscan','haus', 'nd2']]
self.inputformat.currentTextChanged.connect(self.parse_inputformat)
self.layout.addWidget(self.inputformat,2,0,1,1)

Expand Down

0 comments on commit bea38a9

Please sign in to comment.