ExportDialog increase spinBox limit 10 000px to 100 000px

See: https://qelectrotech.org/forum/viewtopic.php?pid=21002#p21002
This commit is contained in:
Laurent Trinques 2025-02-06 07:12:56 +01:00
parent 7466793e71
commit c9ba7bee6c

View File

@ -1008,12 +1008,12 @@ ExportDialog::ExportDiagramLine::ExportDiagramLine(Diagram *dia, QSize diagram_s
file_name -> setMinimumWidth(280);
width = new QSpinBox();
width -> setRange(1, 10000);
width -> setRange(1, 100000);
width -> setSuffix(tr("px"));
width -> setValue(diagram_size.width());
height = new QSpinBox();
height -> setRange(1, 10000);
height -> setRange(1, 100000);
height -> setSuffix(tr("px"));
height -> setValue(diagram_size.height());