UI: Fixed issue where mouse could remain hidden permanently
This commit is contained in:
parent
712182f700
commit
90115c546d
1 changed files with 4 additions and 2 deletions
|
@ -71,8 +71,10 @@ namespace Mesen.GUI.Controls
|
|||
|
||||
private void tmrMouse_Tick(object sender, EventArgs e)
|
||||
{
|
||||
_cursorHidden = true;
|
||||
Cursor.Hide();
|
||||
if(!_cursorHidden) {
|
||||
_cursorHidden = true;
|
||||
Cursor.Hide();
|
||||
}
|
||||
}
|
||||
|
||||
private void ctrlRenderer_MouseLeave(object sender, EventArgs e)
|
||||
|
|
Loading…
Add table
Reference in a new issue