aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/core/libLumina/LVideoWidget.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/core/libLumina/LVideoWidget.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/core/libLumina/LVideoWidget.h')
-rw-r--r--src-qt5/core/libLumina/LVideoWidget.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/src-qt5/core/libLumina/LVideoWidget.h b/src-qt5/core/libLumina/LVideoWidget.h
index c239a697..6743acb6 100644
--- a/src-qt5/core/libLumina/LVideoWidget.h
+++ b/src-qt5/core/libLumina/LVideoWidget.h
@@ -11,6 +11,8 @@ class LVideoWidget : public QWidget {
LVideoWidget(QString, QSize, QWidget* parent=NULL);
~LVideoWidget();
void setIconSize(QSize);
+ void disableIcons();
+ void enableIcons();
private:
bool flag;
bgstack15