all repos — mgba @ b602f7af3da13a11e68f2877693be3b441f483af

mGBA Game Boy Advance Emulator

Qt: Fix drag and drop on Windows

Conflicts:
	CHANGES
Jeffrey Pfau jeffrey@endrift.com
Wed, 19 Aug 2015 22:17:09 -0700
commit

b602f7af3da13a11e68f2877693be3b441f483af

parent

31d41cf2f62023fd231d10fe8e14b1441651bcc9

2 files changed, 2 insertions(+), 1 deletions(-)

jump to
M CHANGESCHANGES

@@ -2,6 +2,7 @@ 0.3.1: (Future)

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 0.3.0: (2015-08-16) Features:
M src/platform/qt/Window.cppsrc/platform/qt/Window.cpp

@@ -507,7 +507,7 @@ // No remote loading

return; } event->accept(); - m_controller->loadGame(url.path()); + m_controller->loadGame(url.toLocalFile()); } void Window::mouseDoubleClickEvent(QMouseEvent* event) {