aboutsummaryrefslogtreecommitdiff
path: root/lumina-desktop/desktop-plugins/desktopview
diff options
context:
space:
mode:
authorKen Moore <ken@pcbsd.org>2015-04-28 08:50:51 -0400
committerKen Moore <ken@pcbsd.org>2015-04-28 08:50:51 -0400
commitabcb33d72ce3eeabd79cf4a15b7f49476b74cb56 (patch)
tree41e1e5271a1e36358297c5e130f66e1232945203 /lumina-desktop/desktop-plugins/desktopview
parentFinish up the conversion of lumina-fm to the new favorites system. Now it is ... (diff)
downloadlumina-abcb33d72ce3eeabd79cf4a15b7f49476b74cb56.tar.gz
lumina-abcb33d72ce3eeabd79cf4a15b7f49476b74cb56.tar.bz2
lumina-abcb33d72ce3eeabd79cf4a15b7f49476b74cb56.zip
Add a button to the userbutton "home dir" section for starting a search of the selected directory. Also enable the use of lumina-fileinfo for *any* file within the desktopview plugin.
Diffstat (limited to 'lumina-desktop/desktop-plugins/desktopview')
-rw-r--r--lumina-desktop/desktop-plugins/desktopview/DesktopViewPlugin.cpp5
1 files changed, 1 insertions, 4 deletions
diff --git a/lumina-desktop/desktop-plugins/desktopview/DesktopViewPlugin.cpp b/lumina-desktop/desktop-plugins/desktopview/DesktopViewPlugin.cpp
index be815587..527de682 100644
--- a/lumina-desktop/desktop-plugins/desktopview/DesktopViewPlugin.cpp
+++ b/lumina-desktop/desktop-plugins/desktopview/DesktopViewPlugin.cpp
@@ -174,9 +174,6 @@ void DesktopViewPlugin::updateContents(){
void DesktopViewPlugin::displayProperties(){
QList<QListWidgetItem*> sel = list->selectedItems();
for(int i=0; i<sel.length(); i++){
- //lumina-fileinfo only works on *.desktop files at the moment
- if(sel[i]->whatsThis().endsWith(".desktop")){
- LSession::LaunchApplication("lumina-fileinfo \""+sel[i]->whatsThis());
- }
+ LSession::LaunchApplication("lumina-fileinfo \""+sel[i]->whatsThis());
}
}
bgstack15