Hex Editor - fix so that you can only highlight using left click (fixes the ability to highlight multiple addresses and use the context menu)

This commit is contained in:
adelikat 2012-10-15 00:56:47 +00:00
parent 4ffacf1ff8
commit 50b6a36661
1 changed files with 28 additions and 25 deletions

View File

@ -2325,6 +2325,8 @@ namespace BizHawk.MultiClient
}
private void AddressesLabel_MouseDown(object sender, MouseEventArgs e)
{
if (e.Button == MouseButtons.Left)
{
int addressOver = GetPointedAddress(e.X, e.Y);
if (addressOver >= 0)
@ -2364,6 +2366,7 @@ namespace BizHawk.MultiClient
MouseIsDown = true;
}
}
private void AddressesLabel_MouseUp(object sender, MouseEventArgs e)
{