aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/desktop-utils/lumina-fm/widgets/DirWidget2.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src-qt5/desktop-utils/lumina-fm/widgets/DirWidget2.cpp')
-rw-r--r--src-qt5/desktop-utils/lumina-fm/widgets/DirWidget2.cpp24
1 files changed, 1 insertions, 23 deletions
diff --git a/src-qt5/desktop-utils/lumina-fm/widgets/DirWidget2.cpp b/src-qt5/desktop-utils/lumina-fm/widgets/DirWidget2.cpp
index a79f4516..cc608b92 100644
--- a/src-qt5/desktop-utils/lumina-fm/widgets/DirWidget2.cpp
+++ b/src-qt5/desktop-utils/lumina-fm/widgets/DirWidget2.cpp
@@ -185,28 +185,6 @@ void DirWidget::UpdateText(){
if(RCBW!=0){ RCBW->retranslate(); }
}
-
-//Keyboard Shortcuts triggered
-/*void DirWidget::TryRenameSelection(){
- on_tool_act_rename_clicked();
-}
-
-void DirWidget::TryCutSelection(){
- on_tool_act_cut_clicked();
-}
-
-void DirWidget::TryCopySelection(){
- on_tool_act_copy_clicked();
-}
-
-void DirWidget::TryPasteSelection(){
- on_tool_act_paste_clicked();
-}
-
-void DirWidget::TryDeleteSelection(){
- on_tool_act_rm_clicked();
-}*/
-
// =================
// PRIVATE
// =================
@@ -403,7 +381,7 @@ void DirWidget::on_actionDualColumn_triggered(bool checked){
RCBW = new BrowserWidget("rc", this);
ui->browser_layout->addWidget(RCBW);
connect(RCBW, SIGNAL(dirChange(QString)), this, SLOT(currentDirectoryChanged()) );
- connect(RCBW, SIGNAL(itemsActivated()), this, SLOT(itemsActivated()) );
+ connect(RCBW, SIGNAL(itemsActivated()), this, SLOT(runFiles()) );
connect(RCBW, SIGNAL(DataDropped(QString, QStringList)), this, SIGNAL(PasteFiles(QString, QStringList)) );
connect(RCBW, SIGNAL(contextMenuRequested()), this, SLOT(OpenContextMenu()) );
connect(RCBW, SIGNAL(updateDirectoryStatus(QString)), this, SLOT(dirStatusChanged(QString)) );
bgstack15