mirror of
https://github.com/qelectrotech/qelectrotech-source-mirror.git
synced 2025-12-17 12:40:35 +01:00
ExportDialog increase spinBox limit 10 000px to 100 000px
See: https://qelectrotech.org/forum/viewtopic.php?pid=21002#p21002
This commit is contained in:
@@ -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());
|
||||
|
||||
|
||||
Reference in New Issue
Block a user