Skip to content

Commit

Permalink
fix TAStudio autohold/fire right-click logic
Browse files Browse the repository at this point in the history
- closes #4125
  • Loading branch information
Morilli committed Nov 26, 2024
1 parent 075247c commit 24d4e89
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -424,6 +424,8 @@ private void TasView_ColumnClick(object sender, InputRoll.ColumnClickEventArgs e
private void TasView_ColumnRightClick(object sender, InputRoll.ColumnClickEventArgs e)
{
var col = e.Column!;
if (col.Name is FrameColumnName or CursorColumnName) return;

col.Emphasis = !col.Emphasis;
UpdateAutoFire(col.Name, col.Emphasis);
TasView.Refresh();
Expand Down

0 comments on commit 24d4e89

Please sign in to comment.