summaryrefslogtreecommitdiffstats
path: root/src/citra_qt/bootmanager.h
diff options
context:
space:
mode:
authorKloen <jlcc20@gmail.com>2015-09-04 15:55:48 +0200
committerKloen <jlcc20@gmail.com>2015-09-18 11:36:59 +0200
commit541fc80240440f73c6d83650d938991a77995b97 (patch)
tree124e40091433e225441c0e5f923c322d3bc15514 /src/citra_qt/bootmanager.h
parentMerge pull request #1097 from yuriks/cfg-blocks (diff)
downloadyuzu-541fc80240440f73c6d83650d938991a77995b97.tar
yuzu-541fc80240440f73c6d83650d938991a77995b97.tar.gz
yuzu-541fc80240440f73c6d83650d938991a77995b97.tar.bz2
yuzu-541fc80240440f73c6d83650d938991a77995b97.tar.lz
yuzu-541fc80240440f73c6d83650d938991a77995b97.tar.xz
yuzu-541fc80240440f73c6d83650d938991a77995b97.tar.zst
yuzu-541fc80240440f73c6d83650d938991a77995b97.zip
Diffstat (limited to '')
-rw-r--r--src/citra_qt/bootmanager.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/citra_qt/bootmanager.h b/src/citra_qt/bootmanager.h
index dc422358e..2fd611367 100644
--- a/src/citra_qt/bootmanager.h
+++ b/src/citra_qt/bootmanager.h
@@ -123,13 +123,12 @@ public:
void OnClientAreaResized(unsigned width, unsigned height);
- void OnFramebufferSizeChanged();
-
public slots:
void moveContext(); // overridden
void OnEmulationStarting(EmuThread* emu_thread);
void OnEmulationStopping();
+ void OnFramebufferSizeChanged();
signals:
/// Emitted when the window is closed
@@ -146,4 +145,7 @@ private:
int keyboard_id;
EmuThread* emu_thread;
+
+protected:
+ void showEvent(QShowEvent* event) override;
};