aboutsummaryrefslogtreecommitdiff
path: root/src-qt5/desktop-utils/lumina-fileinfo
diff options
context:
space:
mode:
authorKen Moore <ken@ixsystems.com>2017-10-25 18:27:52 -0400
committerKen Moore <ken@ixsystems.com>2017-10-25 18:27:52 -0400
commitc52596a4d90e681b394e4c212592f26275d74bae (patch)
tree6264e2caf978da7e09d749c923821e3d8132bd10 /src-qt5/desktop-utils/lumina-fileinfo
parentRe-enable the "Root Mode" warning at the top of lumina-fm, and setup the root... (diff)
parentFixed issues with previews and LVideoWidget sizing (diff)
downloadlumina-c52596a4d90e681b394e4c212592f26275d74bae.tar.gz
lumina-c52596a4d90e681b394e4c212592f26275d74bae.tar.bz2
lumina-c52596a4d90e681b394e4c212592f26275d74bae.zip
Merge branch 'master' of github.com:trueos/lumina
Diffstat (limited to 'src-qt5/desktop-utils/lumina-fileinfo')
-rw-r--r--src-qt5/desktop-utils/lumina-fileinfo/MainUI.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src-qt5/desktop-utils/lumina-fileinfo/MainUI.cpp b/src-qt5/desktop-utils/lumina-fileinfo/MainUI.cpp
index fb55ad99..c712afed 100644
--- a/src-qt5/desktop-utils/lumina-fileinfo/MainUI.cpp
+++ b/src-qt5/desktop-utils/lumina-fileinfo/MainUI.cpp
@@ -88,7 +88,7 @@ void MainUI::LoadFile(QString path, QString type){
ui->label_file_size->setText( ui->label_file_size->text()+" ("+QString::number(pix.width())+" x "+QString::number(pix.height())+" px)" );
}else if(INFO->isVideo()){
ui->label_file_icon->hide();
- LVideoLabel *mediaLabel = new LVideoLabel(INFO->absoluteFilePath(), ui->tab_file);
+ LVideoLabel *mediaLabel = new LVideoLabel(INFO->absoluteFilePath(), true, ui->tab_file);
mediaLabel->setFixedSize(64,64);
ui->formLayout->replaceWidget(ui->label_file_icon, mediaLabel);
}else{
bgstack15