mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 05:00:20 +00:00
Remove data if it was correctly moved to the upper model
Signed-off-by: Tomaz Canabrava <tomaz.canabrava@intel.com> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
1ba08e2fec
commit
6746b73d85
1 changed files with 3 additions and 0 deletions
|
@ -275,6 +275,9 @@ void ColumnDropCSVView::mousePressEvent(QMouseEvent *press)
|
||||||
drag->setPixmap(pix);
|
drag->setPixmap(pix);
|
||||||
drag->setMimeData(mimeData);
|
drag->setMimeData(mimeData);
|
||||||
if (drag->exec() != Qt::IgnoreAction){
|
if (drag->exec() != Qt::IgnoreAction){
|
||||||
|
if (drag->target() != drag->source()) {
|
||||||
|
model()->setData(atClick, QString());
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue