diff options
author | gal20 <71563441+gal20@users.noreply.github.com> | 2020-12-30 21:41:14 +0200 |
---|---|---|
committer | gal20 <71563441+gal20@users.noreply.github.com> | 2020-12-31 21:16:09 +0200 |
commit | 5dfb8743cb8c98642177a7788fd796e48a6867bf (patch) | |
tree | 60cb281b7341208ea478818ac089886b8d13b173 /src/yuzu/main.h | |
parent | aa87278bf04f70e557020556cce50539fcf0ee81 (diff) |
yuzu/main: fix mouse not showing on move and port citra-emu/citra#5476
Diffstat (limited to 'src/yuzu/main.h')
-rw-r--r-- | src/yuzu/main.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/yuzu/main.h b/src/yuzu/main.h index ea6d2c30d..31788ea62 100644 --- a/src/yuzu/main.h +++ b/src/yuzu/main.h @@ -248,6 +248,7 @@ private slots: void OnCoreError(Core::System::ResultStatus, std::string); void OnReinitializeKeys(ReinitializeKeyBehavior behavior); void OnLanguageChanged(const QString& locale); + void OnMouseActivity(); private: void RemoveBaseContent(u64 program_id, const QString& entry_type); @@ -335,6 +336,4 @@ protected: void dropEvent(QDropEvent* event) override; void dragEnterEvent(QDragEnterEvent* event) override; void dragMoveEvent(QDragMoveEvent* event) override; - void mouseMoveEvent(QMouseEvent* event) override; - void mousePressEvent(QMouseEvent* event) override; }; |