mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2025-01-25 15:35:23 +00:00
drag and drop works.
This commit is contained in:
parent
1bcc6d6918
commit
40cc108e54
@ -492,10 +492,9 @@ void CSVWorld::Table::dropEvent(QDropEvent *event)
|
||||
{
|
||||
const CSMWorld::TableMimeData* mime = dynamic_cast<const CSMWorld::TableMimeData*> (event->mimeData());
|
||||
CSMWorld::UniversalId record (mime->returnMatching (display));
|
||||
mUndoStack.push (new CSMWorld::ModifyCommand ( *mModel,
|
||||
index,
|
||||
QVariant(record.getId().c_str())
|
||||
));
|
||||
std::auto_ptr<CSMWorld::ModifyCommand> command (new CSMWorld::ModifyCommand
|
||||
(*mProxyModel, index, QVariant (QString::fromStdString (record.getId()))));
|
||||
mUndoStack.push (command.release());
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user