Skip to content
Snippets Groups Projects
Commit 4ea95458 authored by Paul McCarthy's avatar Paul McCarthy
Browse files

FSLDirDialog defaults to /usr/local/.

parent f75aee9b
No related branches found
No related tags found
No related merge requests found
......@@ -18,9 +18,10 @@ use throughout ``fslpy``. The available dialogs are:
"""
import threading
import os.path as op
import threading
import wx
import wx
from .platform import platform as fslplatform
......@@ -708,6 +709,7 @@ class FSLDirDialog(wx.Dialog):
dlg = wx.DirDialog(
self,
message='Select the directory in which FSL is installed',
defaultPath=op.join('usr', 'local'),
style=wx.DD_DEFAULT_STYLE | wx.DD_DIR_MUST_EXIST)
if dlg.ShowModal() != wx.ID_OK:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment