NESGameGenie: fix inserting with on screen keyboard
This commit is contained in:
parent
eb9f37d6bd
commit
d21da3a847
|
@ -228,7 +228,7 @@ namespace BizHawk.MultiClient
|
||||||
|
|
||||||
int x = GameGenieCode.SelectionStart;
|
int x = GameGenieCode.SelectionStart;
|
||||||
GameGenieCode.Text = GameGenieCode.Text.Insert(x, code);
|
GameGenieCode.Text = GameGenieCode.Text.Insert(x, code);
|
||||||
GameGenieCode.SelectionStart = x;
|
GameGenieCode.SelectionStart = x + 1;
|
||||||
Encoding.Checked = false;
|
Encoding.Checked = false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue