summaryrefslogtreecommitdiff
path: root/ui
diff options
context:
space:
mode:
Diffstat (limited to 'ui')
-rw-r--r--ui/dir_name.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/dir_name.cpp b/ui/dir_name.cpp
index 7a068343..356b0888 100644
--- a/ui/dir_name.cpp
+++ b/ui/dir_name.cpp
@@ -235,7 +235,7 @@ void DirectoryName<NameControl>::onSelectDir(wxCommandEvent& event)
newFolder = make_unique<wxString>(selectedFolder);
}
}
-#endif
+#endif
if (!newFolder.get())
{
wxDirDialog dirPicker(&selectButton_, _("Select a folder"), defaultDirname); //put modal wxWidgets dialogs on stack: creating on freestore leads to memleak!
bgstack15