Move scene to new base point after creation.
--HG-- branch : develop
This commit is contained in:
parent
3f15442162
commit
4445071533
|
@ -207,14 +207,7 @@ void MainWindow::ActionNewDraw()
|
||||||
disconnect(comboBoxDraws, static_cast<void (QComboBox::*)(int)>(&QComboBox::currentIndexChanged),
|
disconnect(comboBoxDraws, static_cast<void (QComboBox::*)(int)>(&QComboBox::currentIndexChanged),
|
||||||
this, &MainWindow::currentDrawChanged);
|
this, &MainWindow::currentDrawChanged);
|
||||||
comboBoxDraws->addItem(nameDraw);
|
comboBoxDraws->addItem(nameDraw);
|
||||||
index = comboBoxDraws->findText(nameDraw);
|
|
||||||
if ( index != -1 )
|
|
||||||
{ // -1 for not found
|
|
||||||
comboBoxDraws->setCurrentIndex(index);
|
|
||||||
currentDrawChanged( index );
|
|
||||||
}
|
|
||||||
connect(comboBoxDraws, static_cast<void (QComboBox::*)(int)>(&QComboBox::currentIndexChanged), this,
|
|
||||||
&MainWindow::currentDrawChanged);
|
|
||||||
pattern->ClearGObjects();
|
pattern->ClearGObjects();
|
||||||
//Create single point
|
//Create single point
|
||||||
qint64 id = pattern->AddGObject(new VPointF(toPixel((10+comboBoxDraws->count()*5)), toPixel(10), "А", 5, 10));
|
qint64 id = pattern->AddGObject(new VPointF(toPixel((10+comboBoxDraws->count()*5)), toPixel(10), "А", 5, 10));
|
||||||
|
@ -228,6 +221,15 @@ void MainWindow::ActionNewDraw()
|
||||||
SetEnableTool(true);
|
SetEnableTool(true);
|
||||||
SetEnableWidgets(true);
|
SetEnableWidgets(true);
|
||||||
changeInFile = true;
|
changeInFile = true;
|
||||||
|
|
||||||
|
index = comboBoxDraws->findText(nameDraw);
|
||||||
|
if ( index != -1 )
|
||||||
|
{ // -1 for not found
|
||||||
|
comboBoxDraws->setCurrentIndex(index);
|
||||||
|
currentDrawChanged( index );
|
||||||
|
}
|
||||||
|
connect(comboBoxDraws, static_cast<void (QComboBox::*)(int)>(&QComboBox::currentIndexChanged), this,
|
||||||
|
&MainWindow::currentDrawChanged);
|
||||||
}
|
}
|
||||||
|
|
||||||
void MainWindow::OptionDraw()
|
void MainWindow::OptionDraw()
|
||||||
|
|
Loading…
Reference in New Issue
Block a user