all repos — mgba @ 91b53fc0c124d9011e700d35a33e6c2e63a09ef8

mGBA Game Boy Advance Emulator

Qt: Fix drag and drop on Windows
Jeffrey Pfau jeffrey@endrift.com
Wed, 19 Aug 2015 22:17:09 -0700
commit

91b53fc0c124d9011e700d35a33e6c2e63a09ef8

parent

003a21b13d8d563509de5d20966b7c03b14c626f

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

jump to
M CHANGESCHANGES

@@ -2,6 +2,7 @@ 0.4.0: (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 Misc: - Qt: Window size command line options are now supported - Qt: Increase usability of key mapper
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) {