summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--logic/work.cpp8
1 files changed, 2 insertions, 6 deletions
diff --git a/logic/work.cpp b/logic/work.cpp
index 302414b8..7689f916 100644
--- a/logic/work.cpp
+++ b/logic/work.cpp
@@ -36,12 +36,8 @@ std::unique_ptr<TrackLogger> Work::make_logger(main_settings &s)
if (s.tracklogging_enabled)
{
QString filename = browse_datalogging_file(s);
- if (filename.isEmpty())
- {
- // The user probably canceled the file dialog. In this case we don't want to do anything.
- return {};
- }
- else
+
+ if (!filename.isEmpty())
{
auto logger = std::make_unique<TrackLoggerCSV>(*s.tracklogging_filename);