Fix Ctrl+S in timeline view to not split the camera shot media

This commit is contained in:
Wojtek Figat
2022-08-19 15:20:02 +02:00
parent b2f22b2d87
commit f4516718a0

View File

@@ -2097,7 +2097,10 @@ namespace FlaxEditor.GUI.Timeline
}
break;
case KeyboardKeys.S:
Split(CurrentFrame);
if (!Root.GetKey(KeyboardKeys.Control))
{
Split(CurrentFrame);
}
return true;
case KeyboardKeys.Delete:
OnKeyframesDelete(null);