diff options
author | Ken Moore <ken@ixsystems.com> | 2016-09-30 14:56:13 -0400 |
---|---|---|
committer | Ken Moore <ken@ixsystems.com> | 2016-09-30 14:56:13 -0400 |
commit | 6b29ee47912f1e19f80e1cdcc217346f1463ba5c (patch) | |
tree | 99fdc6964c8b287d69b2f685ebe8a9114d69b69b | |
parent | Oops, forgot to add a couple new files. (diff) | |
download | lumina-6b29ee47912f1e19f80e1cdcc217346f1463ba5c.tar.gz lumina-6b29ee47912f1e19f80e1cdcc217346f1463ba5c.tar.bz2 lumina-6b29ee47912f1e19f80e1cdcc217346f1463ba5c.zip |
Oops - fix the activation signal for the second column in the dirWidget2.
-rw-r--r-- | src-qt5/desktop-utils/lumina-fm/widgets/DirWidget2.cpp | 24 |
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)) ); |