diff options
author | Ken Moore <ken@ixsystems.com> | 2017-10-25 18:27:52 -0400 |
---|---|---|
committer | Ken Moore <ken@ixsystems.com> | 2017-10-25 18:27:52 -0400 |
commit | c52596a4d90e681b394e4c212592f26275d74bae (patch) | |
tree | 6264e2caf978da7e09d749c923821e3d8132bd10 /src-qt5/desktop-utils/lumina-fileinfo | |
parent | Re-enable the "Root Mode" warning at the top of lumina-fm, and setup the root... (diff) | |
parent | Fixed issues with previews and LVideoWidget sizing (diff) | |
download | lumina-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.cpp | 2 |
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{ |