forked from teamnwah/openmw-tes3coop
droping somewhat works
This commit is contained in:
parent
df46218acc
commit
2e33ab3a13
2 changed files with 8 additions and 0 deletions
|
@ -465,4 +465,9 @@ void CSVWorld::Table::dropEvent(QDropEvent *event)
|
|||
{
|
||||
std::cout << "drop";
|
||||
event->acceptProposedAction();
|
||||
}
|
||||
|
||||
void CSVWorld::Table::dragMoveEvent(QDragMoveEvent *event)
|
||||
{
|
||||
event->accept();
|
||||
}
|
|
@ -56,6 +56,9 @@ namespace CSVWorld
|
|||
|
||||
void dropEvent(QDropEvent *event);
|
||||
|
||||
void dragMoveEvent(QDragMoveEvent *event);
|
||||
|
||||
|
||||
public:
|
||||
|
||||
Table (const CSMWorld::UniversalId& id, CSMWorld::Data& data, QUndoStack& undoStack, bool createAndDelete, bool sorting);
|
||||
|
|
Loading…
Reference in a new issue