Skip to content

Commit 575cd67

Browse files
committed
Fix: Typing in axis editing mode would occasionally not overwrite existing value.
1 parent 0fa632f commit 575cd67

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

src/BizHawk.Client.EmuHawk/tools/TAStudio/TAStudio.ListView.cs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1315,6 +1315,7 @@ public void AnalogDecrementByTen()
13151315
private void AnalogChangeBy(int change)
13161316
{
13171317
if (!AxisEditingMode) return;
1318+
if (change == 0) return; // prevent issues with user accidentally moving mouse by 1 pixel before typing
13181319

13191320
if (_didAxisType)
13201321
{

0 commit comments

Comments
 (0)