From 31b750eafe7a63454cba925e1d00f1c21b0c3e79 Mon Sep 17 00:00:00 2001 From: Ken Moore Date: Wed, 22 Apr 2015 11:40:54 -0400 Subject: Make sure that lumina-fileinfo is only run on *.desktop files from the desktopview plugin (does not support other types of files yet). --- lumina-desktop/desktop-plugins/desktopview/DesktopViewPlugin.cpp | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) (limited to 'lumina-desktop/desktop-plugins/desktopview') diff --git a/lumina-desktop/desktop-plugins/desktopview/DesktopViewPlugin.cpp b/lumina-desktop/desktop-plugins/desktopview/DesktopViewPlugin.cpp index f8e85cea..be815587 100644 --- a/lumina-desktop/desktop-plugins/desktopview/DesktopViewPlugin.cpp +++ b/lumina-desktop/desktop-plugins/desktopview/DesktopViewPlugin.cpp @@ -38,7 +38,9 @@ DesktopViewPlugin::DesktopViewPlugin(QWidget* parent, QString ID) : LDPlugin(par menu->addSeparator(); menu->addAction( LXDG::findIcon("edit-delete",""), tr("Delete"), this, SLOT(deleteItems()) ); menu->addSeparator(); - menu->addAction( LXDG::findIcon("system-search",""), tr("Properties"), this, SLOT(displayProperties()) ); + if(LUtils::isValidBinary("lumina-fileinfo")){ + menu->addAction( LXDG::findIcon("system-search",""), tr("Properties"), this, SLOT(displayProperties()) ); + } this->layout()->addWidget(list); this->setInitialSize(600,600); watcher = new QFileSystemWatcher(this); @@ -172,6 +174,9 @@ void DesktopViewPlugin::updateContents(){ void DesktopViewPlugin::displayProperties(){ QList sel = list->selectedItems(); for(int i=0; iwhatsThis()); + //lumina-fileinfo only works on *.desktop files at the moment + if(sel[i]->whatsThis().endsWith(".desktop")){ + LSession::LaunchApplication("lumina-fileinfo \""+sel[i]->whatsThis()); + } } } -- cgit