Skip to content

Commit 61772f5

Browse files
author
Jacob Pennington
committed
Fixed bug in GUI changes
1 parent 8d2c1df commit 61772f5

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

kilosort/gui/settings_box.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,8 @@ def __init__(self, parent):
4848
path = self.data_file_path
4949
if not isinstance(path, list): path = [path]
5050
path = [p.resolve().as_posix() for p in path]
51+
else:
52+
path = None
5153
self.data_file_path_input = QtWidgets.QLineEdit(
5254
str(path) if path is not None else None
5355
)

0 commit comments

Comments
 (0)