tastudio: don't trigger right button up events if left button is still held down
This commit is contained in:
parent
7529570ab8
commit
1bd535c31f
|
@ -762,7 +762,8 @@ namespace BizHawk.Client.EmuHawk
|
|||
|
||||
private void TasView_MouseUp(object sender, MouseEventArgs e)
|
||||
{
|
||||
if (e.Button == MouseButtons.Right && !TasView.IsPointingAtColumnHeader && !_supressContextMenu && TasView.SelectedRows.Any())
|
||||
if (e.Button == MouseButtons.Right && !TasView.IsPointingAtColumnHeader &&
|
||||
!_supressContextMenu && TasView.SelectedRows.Any() && !_leftButtonHeld)
|
||||
{
|
||||
if (Global.MovieSession.Movie.FrameCount < TasView.SelectedRows.Max())
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue