gui: Set a more reasonable maximum width for previews

They won't be this large but in particular for vertical scroll,
this makes way more sense.
Este commit está contenido en:
Albert S. 2022-08-28 13:05:28 +02:00
padre 7c63ee9178
commit 238f9add49
Se han modificado 1 ficheros con 2 adiciones y 0 borrados

Ver fichero

@ -15,6 +15,7 @@
#include <QFileDialog>
#include <QScreen>
#include <QProgressDialog>
#include <QDesktopWidget>
#include "mainwindow.h"
#include "ui_mainwindow.h"
#include "clicklabel.h"
@ -647,6 +648,7 @@ void MainWindow::previewReceived(QSharedPointer<PreviewResult> preview, unsigned
headerLabel->setText(QString("Path: ") + preview->getDocumentPath());
ClickLabel *label = dynamic_cast<ClickLabel *>(preview->createPreviewWidget());
label->setMaximumWidth(QApplication::desktop()->availableGeometry().width() - 200);
QVBoxLayout *previewLayout = new QVBoxLayout();