Editor element primitive change setRange -1000 1000 to -5000 5000

git-svn-id: svn+ssh://svn.tuxfamily.org/svnroot/qet/qet/trunk@4609 bfdf4180-ca20-0410-9c96-a3a8aa849046
This commit is contained in:
scorpio810
2016-08-08 08:15:22 +00:00
parent 45c63710ad
commit 0dc8592a46
7 changed files with 22 additions and 22 deletions

View File

@@ -39,10 +39,10 @@ RectangleEditor::RectangleEditor(QETElementEditor *editor, PartRectangle *rect,
w = new QDoubleSpinBox();
h = new QDoubleSpinBox();
x->setRange(-1000, 1000);
y->setRange(-1000, 1000);
w->setRange(-1000, 1000);
h->setRange(-1000, 1000);
x->setRange(-5000, 5000);
y->setRange(-5000, 5000);
w->setRange(-5000, 5000);
h->setRange(-5000, 5000);
QVBoxLayout *v_layout = new QVBoxLayout(this);