Compare commits

...

2 Commits

Author SHA1 Message Date
Laurent Trinques 40b7aa999f git submodule update --remote elements 2025-02-06 07:18:42 +01:00
Laurent Trinques c9ba7bee6c ExportDialog increase spinBox limit 10 000px to 100 000px
See: https://qelectrotech.org/forum/viewtopic.php?pid=21002#p21002
2025-02-06 07:12:56 +01:00
2 changed files with 3 additions and 3 deletions
+2 -2
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());