From c50b0a995b3fe43fd6c8e45c34a427b4fbbb9cf5 Mon Sep 17 00:00:00 2001 From: Klaas Freitag Date: Tue, 17 Dec 2013 14:16:25 +0100 Subject: [PATCH] Commented opening of files from the activity view as it does not work. See https://github.com/owncloud/mirall/issues/1295 --- src/mirall/protocolwidget.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/mirall/protocolwidget.cpp b/src/mirall/protocolwidget.cpp index 25ef6109b..7be1dec92 100644 --- a/src/mirall/protocolwidget.cpp +++ b/src/mirall/protocolwidget.cpp @@ -250,7 +250,7 @@ void ProtocolWidget::slotOpenFile( QTreeWidgetItem *item, int ) // folder->path() always comes back with trailing path QString fullPath = folder->path() + fileName; if (QFile(fullPath).exists()) { - Utility::showInFileManager(fullPath); + // Utility::showInFileManager(fullPath); } } }