Qt: Fix drag and drop on Windows

This commit is contained in:
Jeffrey Pfau 2015-08-19 22:17:09 -07:00
parent 003a21b13d
commit 91b53fc0c1
2 changed files with 2 additions and 1 deletions

View File

@ -2,6 +2,7 @@
Bugfixes:
- Qt: Windows no longer spawn in the top left on first launch
- Qt: Fix install path of XDG desktop file with DESTDIR
- Qt: Fix drag and drop on Windows
Misc:
- Qt: Window size command line options are now supported
- Qt: Increase usability of key mapper

View File

@ -507,7 +507,7 @@ void Window::dropEvent(QDropEvent* event) {
return;
}
event->accept();
m_controller->loadGame(url.path());
m_controller->loadGame(url.toLocalFile());
}
void Window::mouseDoubleClickEvent(QMouseEvent* event) {