Qt: Fix drag and drop on Windows

Conflicts:
	CHANGES
This commit is contained in:
Jeffrey Pfau 2015-08-19 22:17:09 -07:00
parent 31d41cf2f6
commit b602f7af3d
2 changed files with 2 additions and 1 deletions

View File

@ -2,6 +2,7 @@
Bugfixes: Bugfixes:
- Qt: Windows no longer spawn in the top left on first launch - Qt: Windows no longer spawn in the top left on first launch
- Qt: Fix install path of XDG desktop file with DESTDIR - Qt: Fix install path of XDG desktop file with DESTDIR
- Qt: Fix drag and drop on Windows
0.3.0: (2015-08-16) 0.3.0: (2015-08-16)
Features: Features:

View File

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