aboutsummaryrefslogtreecommitdiff
path: root/lumina-fm/MainUI.h
diff options
context:
space:
mode:
authorKen Moore <ken@pcbsd.org>2015-04-23 10:17:20 -0400
committerKen Moore <ken@pcbsd.org>2015-04-23 10:17:20 -0400
commitaf44cb451c2f570c009cac3e1ae5a63be8e0a911 (patch)
tree5c5d17d47c0ff0da3f2f84c26bb54322bf5909e7 /lumina-fm/MainUI.h
parentDon't disable the save button on the "defaults" page any more. The autostart ... (diff)
downloadlumina-af44cb451c2f570c009cac3e1ae5a63be8e0a911.tar.gz
lumina-af44cb451c2f570c009cac3e1ae5a63be8e0a911.tar.bz2
lumina-af44cb451c2f570c009cac3e1ae5a63be8e0a911.zip
Make the open/openwith functionality in lumina-fm multi-selection aware. Also so the same for the "properties" option (although it only operates on *.desktop files at the moment).
Diffstat (limited to 'lumina-fm/MainUI.h')
-rw-r--r--lumina-fm/MainUI.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/lumina-fm/MainUI.h b/lumina-fm/MainUI.h
index 4e6fdf6b..b18d25a5 100644
--- a/lumina-fm/MainUI.h
+++ b/lumina-fm/MainUI.h
@@ -207,15 +207,15 @@ private slots:
void playerFileChanged();
//Context Menu Actions
- // - single item actions
void OpenItem(); //run "lumina-open" on it
void OpenItemWith(); //run "lumina-open -select" on it
- void OpenDir(); //open the dir in a new tab
+ //void OpenDir(); //open the dir in a new tab
void RemoveItem(); //Remove the item permanently
+ // - single item actions
void RenameItem();
void FavoriteItem();
- void ViewPropertiesItem();
// - full selection actions
+ void ViewPropertiesItem();
void CutItems();
void CopyItems();
void PasteItems();
bgstack15