From 93a0f160df0b64c9747c441c10f61f249a2f47dc Mon Sep 17 00:00:00 2001 From: David Sansome Date: Sun, 30 Mar 2014 16:46:16 +1100 Subject: [PATCH] Add Configure items to the context menus for cloud file services. --- src/internet/cloudfileservice.cpp | 3 +++ src/main.cpp | 1 - 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/internet/cloudfileservice.cpp b/src/internet/cloudfileservice.cpp index 7b499fa57..7001726a5 100644 --- a/src/internet/cloudfileservice.cpp +++ b/src/internet/cloudfileservice.cpp @@ -81,6 +81,9 @@ void CloudFileService::ShowContextMenu(const QPoint& global_pos) { context_menu_->addActions(GetPlaylistActions()); context_menu_->addAction(IconLoader::Load("download"), tr("Cover Manager"), this, SLOT(ShowCoverManager())); + context_menu_->addSeparator(); + context_menu_->addAction(IconLoader::Load("configure"), tr("Configure..."), + this, SLOT(ShowSettingsDialog())); } context_menu_->popup(global_pos); } diff --git a/src/main.cpp b/src/main.cpp index ee5adf387..90f16a909 100644 --- a/src/main.cpp +++ b/src/main.cpp @@ -217,7 +217,6 @@ void ParseAProto() { void CheckPortable() { QFile f(QApplication::applicationDirPath() + QDir::separator() + "data"); - qLog(Debug) << f.fileName(); if (f.exists()) { // We are portable. Set the bool and change the qsettings path Application::kIsPortable = true;