mirror of
https://port.numenaute.org/aleajactaest/khanat-opennel-code.git
synced 2024-11-05 23:09:04 +00:00
Fixed: #1302 Fixed crash program.
--HG-- branch : gsoc2011-worldeditorqt
This commit is contained in:
parent
f4d699c534
commit
e39cc48a3a
3 changed files with 12 additions and 1 deletions
|
@ -121,7 +121,7 @@ void removeGraphicsItems(const QModelIndex &primIndex, PrimitivesTreeModel *mode
|
|||
{
|
||||
QGraphicsItem *item = qvariant_cast<QGraphicsItem *>(node->data(Constants::GRAPHICS_DATA_QT4_2D));
|
||||
if (item != 0)
|
||||
delete item;
|
||||
scene->removeWorldItem(item);
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
|
|
@ -80,6 +80,15 @@ QGraphicsItem *WorldEditorScene::addWorldItemZone(const QPolygonF &polygon)
|
|||
return item;
|
||||
}
|
||||
|
||||
void WorldEditorScene::removeWorldItem(QGraphicsItem *item)
|
||||
{
|
||||
updateSelectedItems(true);
|
||||
m_selectedItems.clear();
|
||||
m_editedSelectedItems = false;
|
||||
m_firstSelection = false;
|
||||
delete item;
|
||||
}
|
||||
|
||||
void WorldEditorScene::setModeEdit(WorldEditorScene::ModeEdit mode)
|
||||
{
|
||||
if (mode == WorldEditorScene::SelectMode)
|
||||
|
|
|
@ -59,6 +59,8 @@ public:
|
|||
QGraphicsItem *addWorldItemPath(const QPolygonF &polyline);
|
||||
QGraphicsItem *addWorldItemZone(const QPolygonF &polygon);
|
||||
|
||||
void removeWorldItem(QGraphicsItem *item);
|
||||
|
||||
void setModeEdit(WorldEditorScene::ModeEdit mode);
|
||||
WorldEditorScene::ModeEdit editMode() const;
|
||||
|
||||
|
|
Loading…
Reference in a new issue