all repos — mgba @ 73486b634fdf8de31a26eebc8ba23c33a75a1492

mGBA Game Boy Advance Emulator

Qt: Hide mouse immediately when loading
Vicki Pfau vi@endrift.com
Sat, 30 Sep 2017 11:16:31 -0700
commit

73486b634fdf8de31a26eebc8ba23c33a75a1492

parent

0fa95ebd1042912b8502880bc2c8b52e7acc20e7

2 files changed, 4 insertions(+), 0 deletions(-)

jump to
M CHANGESCHANGES

@@ -39,6 +39,7 @@ - CMake: Fix CPack dependencies for libpng 1.6

- Qt: Allow overrides to be saved before a game is loaded - VFS: Make VFile.truncate work growing files on PSV (fixes mgba.io/i/885) - GBA Cheats: Improve detection of raw cheats + - Qt: Hide mouse immediately when loading 0.6.0: (2017-07-16) Features:
M src/platform/qt/Window.cppsrc/platform/qt/Window.cpp

@@ -761,6 +761,9 @@

m_hitUnimplementedBiosCall = false; m_fpsTimer.start(); m_focusCheck.start(); + if (m_display->underMouse()) { + m_screenWidget->setCursor(Qt::BlankCursor); + } m_controller->threadInterrupt(); if (m_controller->isLoaded()) {