aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/desktop-utils/lumina-fm/BrowserWidget.h
diff options
context:
space:
mode:
authorZackaryWelch <welch.zackary@gmail.com>2017-10-25 17:09:02 -0400
committerZackaryWelch <welch.zackary@gmail.com>2017-10-25 17:09:41 -0400
commit76eb44f51faee92476ed509b700be9bc30be08a7 (patch)
treee7a2229d6cf87a21ca800f04c944e3504075a3ce /src-qt5/desktop-utils/lumina-fm/BrowserWidget.h
parentSpeed up some of the desktop init procedures again. (diff)
downloadlumina-76eb44f51faee92476ed509b700be9bc30be08a7.tar.gz
lumina-76eb44f51faee92476ed509b700be9bc30be08a7.tar.bz2
lumina-76eb44f51faee92476ed509b700be9bc30be08a7.zip
Fixed image previews with video thumbnails
Diffstat (limited to 'src-qt5/desktop-utils/lumina-fm/BrowserWidget.h')
-rw-r--r--src-qt5/desktop-utils/lumina-fm/BrowserWidget.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src-qt5/desktop-utils/lumina-fm/BrowserWidget.h b/src-qt5/desktop-utils/lumina-fm/BrowserWidget.h
index 585aaa82..f041280c 100644
--- a/src-qt5/desktop-utils/lumina-fm/BrowserWidget.h
+++ b/src-qt5/desktop-utils/lumina-fm/BrowserWidget.h
@@ -12,6 +12,8 @@
#include <QWidget>
#include <QThread>
+#include <LVideoWidget.h>
+
#include "Browser.h"
#include "widgets/DDListWidgets.h"
@@ -23,7 +25,7 @@ private:
int numItems; //used for checking if all the items have loaded yet
QString ID, statustip;
QStringList date_format, historyList;
- QMap<QString,QTreeWidgetItem*> videoMap;
+ QMap<QString,QPair<QTreeWidgetItem*, LVideoWidget*>> videoMap;
bool freshload;
//The drag and drop brower widgets
bgstack15