mirror of
https://github.com/KillzXGaming/Switch-Toolbox
synced 2024-11-22 20:43:09 +00:00
Prevent cursor from reseting to 0 for param editing
This commit is contained in:
parent
f52b605dce
commit
7d09926899
6 changed files with 5 additions and 2 deletions
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -54,5 +54,7 @@ namespace FirstPlugin
|
|||
{
|
||||
return null;
|
||||
}
|
||||
|
||||
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1709,7 +1709,8 @@ namespace BarSlider
|
|||
if (TextEditorActive)
|
||||
return;
|
||||
|
||||
Cursor.Position = prevPos;
|
||||
if (prevPos.X != 0 && prevPos.Y != 0)
|
||||
Cursor.Position = prevPos;
|
||||
Cursor.Show();
|
||||
|
||||
base.OnKeyUp(e);
|
||||
|
|
|
@ -1186,6 +1186,6 @@ namespace Toolbox
|
|||
{
|
||||
ShaderTools.SaveErrorLogs();
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue