summaryrefslogtreecommitdiffstats
path: root/application/groupview/GroupView.cpp
diff options
context:
space:
mode:
authorPetr Mrázek <peterix@gmail.com>2017-04-23 16:50:48 +0200
committerPetr Mrázek <peterix@gmail.com>2017-04-23 16:50:48 +0200
commitd25a7ad3a627dfc15067adb1e2c178faafc5bd3e (patch)
treee644b5821af0d727e2698c0524f925b73419aec2 /application/groupview/GroupView.cpp
parent3f24c4cfe5afe47eb8ce6f0201b9099e4e50e8ba (diff)
downloadMultiMC-d25a7ad3a627dfc15067adb1e2c178faafc5bd3e.tar
MultiMC-d25a7ad3a627dfc15067adb1e2c178faafc5bd3e.tar.gz
MultiMC-d25a7ad3a627dfc15067adb1e2c178faafc5bd3e.tar.lz
MultiMC-d25a7ad3a627dfc15067adb1e2c178faafc5bd3e.tar.xz
MultiMC-d25a7ad3a627dfc15067adb1e2c178faafc5bd3e.zip
NOISSUE accept URL drop events in GroiupView
Diffstat (limited to 'application/groupview/GroupView.cpp')
-rw-r--r--application/groupview/GroupView.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/application/groupview/GroupView.cpp b/application/groupview/GroupView.cpp
index 1ce0568b..75d50483 100644
--- a/application/groupview/GroupView.cpp
+++ b/application/groupview/GroupView.cpp
@@ -572,6 +572,7 @@ void GroupView::dropEvent(QDropEvent *event)
if (mimedata->hasUrls())
{
auto urls = mimedata->urls();
+ event->accept();
emit droppedURLs(urls);
}
}