mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-21 01:40:22 +00:00
Merge pull request #5748 from nitrousox1de/hide-mouse-delay-fullscreen
Hide mouse delay fullscreen
This commit is contained in:
commit
438610a58d
6 changed files with 50 additions and 2 deletions
|
@ -145,6 +145,7 @@ private:
|
|||
ADD_PANE_CENTER
|
||||
};
|
||||
|
||||
static constexpr int MOUSE_HIDE_DELAY = 3000;
|
||||
GameListCtrl* m_game_list_ctrl = nullptr;
|
||||
CConfigMain* m_main_config_dialog = nullptr;
|
||||
wxPanel* m_panel = nullptr;
|
||||
|
@ -169,6 +170,7 @@ private:
|
|||
int m_save_slot = 1;
|
||||
|
||||
wxTimer m_poll_hotkey_timer;
|
||||
wxTimer m_cursor_timer;
|
||||
wxTimer m_handle_signal_timer;
|
||||
|
||||
wxMenuBar* m_menubar_shadow = nullptr;
|
||||
|
@ -361,6 +363,7 @@ private:
|
|||
|
||||
void PollHotkeys(wxTimerEvent&);
|
||||
void ParseHotkeys();
|
||||
void HandleCursorTimer(wxTimerEvent&);
|
||||
void HandleSignal(wxTimerEvent&);
|
||||
|
||||
bool InitControllers();
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue