diff options
author | Ken Moore <ken@ixsystems.com> | 2017-11-02 12:26:43 -0400 |
---|---|---|
committer | Ken Moore <ken@ixsystems.com> | 2017-11-02 12:26:43 -0400 |
commit | 29b171bce4dee4c9737f590079e18e83d49b7136 (patch) | |
tree | dbb7add95843f08ca0c7ddc99e444b581977eb58 /src-qt5/desktop-utils/lumina-fm/widgets/DirWidget2.cpp | |
parent | A bit more cleanup on the external device reporting/usage. (diff) | |
download | lumina-29b171bce4dee4c9737f590079e18e83d49b7136.tar.gz lumina-29b171bce4dee4c9737f590079e18e83d49b7136.tar.bz2 lumina-29b171bce4dee4c9737f590079e18e83d49b7136.zip |
Fix up the drag and drop in lumina-fm.
Also fix the showing of thumbnails within the right-column widget.
Diffstat (limited to 'src-qt5/desktop-utils/lumina-fm/widgets/DirWidget2.cpp')
-rw-r--r-- | src-qt5/desktop-utils/lumina-fm/widgets/DirWidget2.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src-qt5/desktop-utils/lumina-fm/widgets/DirWidget2.cpp b/src-qt5/desktop-utils/lumina-fm/widgets/DirWidget2.cpp index 83040108..5c6f9ef5 100644 --- a/src-qt5/desktop-utils/lumina-fm/widgets/DirWidget2.cpp +++ b/src-qt5/desktop-utils/lumina-fm/widgets/DirWidget2.cpp @@ -477,7 +477,7 @@ void DirWidget::on_actionDualColumn_triggered(bool checked){ if(RCBW!=0){ return; } //nothing to do RCBW = new BrowserWidget("rc", this); ui->browser_layout->addWidget(RCBW); - connect(RCBW, SIGNAL(dirChange(QString)), this, SLOT(currentDirectoryChanged()) ); + connect(RCBW, SIGNAL(dirChange(QString, bool)), this, SLOT(currentDirectoryChanged()) ); 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()) ); @@ -488,6 +488,7 @@ void DirWidget::on_actionDualColumn_triggered(bool checked){ RCBW->showDetails(BW->hasDetails()); RCBW->showHiddenFiles( BW->hasHiddenFiles()); RCBW->setThumbnailSize( BW->thumbnailSize()); + RCBW->showThumbnails( BW->hasThumbnails()); RCBW->changeDirectory( BW->currentDirectory()); } |