diff options
author | Ken Moore <ken@ixsystems.com> | 2016-12-05 09:31:56 -0500 |
---|---|---|
committer | Ken Moore <ken@ixsystems.com> | 2016-12-05 09:31:56 -0500 |
commit | 546bba1faf69e1aac06aa13fd0ecd28d23c09a7f (patch) | |
tree | f8f0d604f12cbc790db4201290ac75f60e766be8 /src-qt5/desktop-utils/lumina-fm/BrowserWidget.cpp | |
parent | Make the start menu open faster by only loading the favorites *when the file/... (diff) | |
download | lumina-546bba1faf69e1aac06aa13fd0ecd28d23c09a7f.tar.gz lumina-546bba1faf69e1aac06aa13fd0ecd28d23c09a7f.tar.bz2 lumina-546bba1faf69e1aac06aa13fd0ecd28d23c09a7f.zip |
Re-enable drag and drop within lumina-fm.
Diffstat (limited to 'src-qt5/desktop-utils/lumina-fm/BrowserWidget.cpp')
-rw-r--r-- | src-qt5/desktop-utils/lumina-fm/BrowserWidget.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src-qt5/desktop-utils/lumina-fm/BrowserWidget.cpp b/src-qt5/desktop-utils/lumina-fm/BrowserWidget.cpp index 8db13718..0d9c33f8 100644 --- a/src-qt5/desktop-utils/lumina-fm/BrowserWidget.cpp +++ b/src-qt5/desktop-utils/lumina-fm/BrowserWidget.cpp @@ -357,6 +357,8 @@ void BrowserWidget::itemDataAvailable(QIcon ico, LFileInfo info){ void BrowserWidget::itemsLoading(int total){ qDebug() << "Got number of items loading:" << total; + if(listWidget!=0){ listWidget->setWhatsThis( BROWSER->currentDirectory() ); } + if(treeWidget!=0){ treeWidget->setWhatsThis(BROWSER->currentDirectory() ); } numItems = total; //save this for later if(total<1){ emit updateDirectoryStatus( tr("No Directory Contents") ); |