mirror of https://github.com/mgba-emu/mgba.git
parent
31d41cf2f6
commit
b602f7af3d
1
CHANGES
1
CHANGES
|
@ -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
|
||||
|
||||
0.3.0: (2015-08-16)
|
||||
Features:
|
||||
|
|
|
@ -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) {
|
||||
|
|
Loading…
Reference in New Issue