aboutsummaryrefslogtreecommitdiff
path: root/lumina-fm/widgets/DirWidget.cpp
diff options
context:
space:
mode:
authorSean Long <me@seanlong.org>2016-02-01 23:14:01 -0800
committerSean Long <me@seanlong.org>2016-02-01 23:14:01 -0800
commit3f2eab3ccc20c8b154043be437e45992b0fec100 (patch)
tree6639fb8c0b24d905bf72faf920c87f729b7d9b07 /lumina-fm/widgets/DirWidget.cpp
parentGenerally in GUI's menu items that popup a window show '...' at the end (diff)
downloadlumina-3f2eab3ccc20c8b154043be437e45992b0fec100.tar.gz
lumina-3f2eab3ccc20c8b154043be437e45992b0fec100.tar.bz2
lumina-3f2eab3ccc20c8b154043be437e45992b0fec100.zip
Added menu items for various functionality that was already available
just not from the main application menu. When adding the shortcuts I used the defacto standards that are used in many *nix applications.
Diffstat (limited to 'lumina-fm/widgets/DirWidget.cpp')
-rw-r--r--lumina-fm/widgets/DirWidget.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/lumina-fm/widgets/DirWidget.cpp b/lumina-fm/widgets/DirWidget.cpp
index 1cf5eb41..f7ade48c 100644
--- a/lumina-fm/widgets/DirWidget.cpp
+++ b/lumina-fm/widgets/DirWidget.cpp
@@ -557,6 +557,10 @@ void DirWidget::UpdateButtons(){
}
//Keyboard Shortcuts triggered
+void DirWidget::TryRenameSelection(){
+ on_tool_act_rename_clicked();
+}
+
void DirWidget::TryCutSelection(){
on_tool_act_cut_clicked();
}
bgstack15