From da08983e86ecd6ddcea885da06007d8a19a825e5 Mon Sep 17 00:00:00 2001 From: Mark Watkins Date: Fri, 4 Jul 2014 13:45:29 +1000 Subject: [PATCH] Disable open-in-file-browser code for Linux (too much work for now) --- sleepyhead/SleepLib/profiles.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sleepyhead/SleepLib/profiles.cpp b/sleepyhead/SleepLib/profiles.cpp index 76261079..ef135911 100644 --- a/sleepyhead/SleepLib/profiles.cpp +++ b/sleepyhead/SleepLib/profiles.cpp @@ -216,6 +216,7 @@ void showInGraphicalShell(const QString &pathIn) QProcess::execute("/usr/bin/osascript", scriptArgs); #else // we cannot select a file here, because no file browser really supports it... + /* const QFileInfo fileInfo(pathIn); const QString folder = fileInfo.absoluteFilePath(); const QString app = Utils::UnixUtils::fileBrowser(Core::ICore::instance()->settings()); @@ -229,7 +230,7 @@ void showInGraphicalShell(const QString &pathIn) if (!success) { QMessageBox::warning(NULL,STR_MessageBox_Error, "Could not find the file browser for your system, you will have to find your profile directory yourself."+"\n\n"+error, QMessageBox::Ok); // showGraphicalShellError(parent, app, error); - } + }*/ #endif }