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.
Bu işleme şunda yer alıyor:
Albert S. 2022-08-28 13:05:28 +02:00
ebeveyn 7c63ee9178
işleme 238f9add49
1 değiştirilmiş dosya ile 2 ekleme ve 0 silme

Dosyayı Görüntüle

@ -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();