mirror of https://github.com/mgba-emu/mgba.git
Qt: Only hide cursor in full screen
This commit is contained in:
parent
24b1fb7b30
commit
3dc8d7d4c9
1
CHANGES
1
CHANGES
|
@ -50,6 +50,7 @@ Misc:
|
|||
- Qt: Migrate multiplayer window handling into GBAApp
|
||||
- Qt: Unified file opening and saving with last location
|
||||
- Qt: Fix windows being resizable when they shouldn't have been
|
||||
- Qt: Only hide cursor in full screen
|
||||
|
||||
0.2.1: (2015-05-13)
|
||||
Bugfixes:
|
||||
|
|
|
@ -16,5 +16,4 @@ Display::Display(QWidget* parent)
|
|||
{
|
||||
setSizePolicy(QSizePolicy::MinimumExpanding, QSizePolicy::MinimumExpanding);
|
||||
setMinimumSize(VIDEO_HORIZONTAL_PIXELS, VIDEO_VERTICAL_PIXELS);
|
||||
setCursor(Qt::BlankCursor);
|
||||
}
|
||||
|
|
|
@ -443,6 +443,7 @@ void Window::enterFullScreen() {
|
|||
return;
|
||||
}
|
||||
showFullScreen();
|
||||
setCursor(Qt::BlankCursor);
|
||||
#ifndef Q_OS_MAC
|
||||
if (m_controller->isLoaded() && !m_controller->isPaused()) {
|
||||
menuBar()->hide();
|
||||
|
@ -454,6 +455,7 @@ void Window::exitFullScreen() {
|
|||
if (!isFullScreen()) {
|
||||
return;
|
||||
}
|
||||
unsetCursor();
|
||||
showNormal();
|
||||
menuBar()->show();
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue