Prevent cursor from reseting to 0 for param editing
This commit is contained in:
parent
f52b605dce
commit
7d09926899
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…
x
Reference in New Issue
Block a user