mirror of
https://github.com/qelectrotech/qelectrotech-source-mirror.git
synced 2025-09-13 20:23:04 +02: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:
parent
7466793e71
commit
c9ba7bee6c
@ -1008,12 +1008,12 @@ ExportDialog::ExportDiagramLine::ExportDiagramLine(Diagram *dia, QSize diagram_s
|
|||||||
file_name -> setMinimumWidth(280);
|
file_name -> setMinimumWidth(280);
|
||||||
|
|
||||||
width = new QSpinBox();
|
width = new QSpinBox();
|
||||||
width -> setRange(1, 10000);
|
width -> setRange(1, 100000);
|
||||||
width -> setSuffix(tr("px"));
|
width -> setSuffix(tr("px"));
|
||||||
width -> setValue(diagram_size.width());
|
width -> setValue(diagram_size.width());
|
||||||
|
|
||||||
height = new QSpinBox();
|
height = new QSpinBox();
|
||||||
height -> setRange(1, 10000);
|
height -> setRange(1, 100000);
|
||||||
height -> setSuffix(tr("px"));
|
height -> setSuffix(tr("px"));
|
||||||
height -> setValue(diagram_size.height());
|
height -> setValue(diagram_size.height());
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user