Graph Editor ZoomToFit fighting user

UE - Editor - UI Systems - Slate - Oct 22, 2019

When using the middle mouse button for panning in a graph editor, the zoom/pan transition effect will not cancel before completion due to manual input, leading to UI/User competition in an undesirab ...

Event not saved correctly when duplicating Level Sequence

UE - Anim - Sequencer - Nov 21, 2019

This issue is similar to [Link Removed]. But I tested the shelve 10164190 mentioned in the comments. It didn't work. ...

Unwanted black boundaries are displayed in a vertical split-screen with 3 players.

UE - Gameplay - Dec 2, 2019

Floating point error from UGameViewportClient::SplitscreenInfo causes this issue. FMath::TruncToInt( 3240 /*ViewportSize*/ * 0.333f/*Ratio in SplitScreenInfo*/ ) = 1079 I suggested a following t ...

Don't display events in blueprint function with profile stats.

UE - Foundation - Core - UObject - Nov 28, 2019

When look at stats in Unreal Frontend, can see the events that run in the function. It work in 4.21, but it doesn't work in 4.22. ...

Grandchild actor with IsEditorOnly enabled is duplicated during save the level.

UE - Gameplay - Components - Dec 6, 2019

IsEditorOnly is not reflected in grandchild actor when parent/child/grandchild are constructed with ChildActorComponent. This causes the issue that actor will increase incorrect when save the level. ...

Nativized UMG widgets with animation tracks can sometimes assert with async loading enabled.

UE - Gameplay - Blueprint - Jan 18, 2020

The incorrect use of NewObject() to instance nested class-owned subobjects will force StaticAllocateObject() to reconstruct the instance that was already constructed by the outer class ctor in nativ ...

Using xcode-select to switch between Xcode 10 and Xcode 11 beta can cause Xcode 11 to be unrecognized by the editor

UE - Platform - Apple - Jul 16, 2019

After switching from Xcode 11.0 Beta 3 (11M362v) to Xcode 10 (10A255) and then back to Xcode 11, the editor no longer recognized that Xcode was installed on my machine when trying to use Xcode 11 as ...

Particle System Components don't inherit owner's time dilation

UE - Niagara - Feb 7, 2020

This is a regression introduced by the particle system manager. It does not account for the owning actor's time dilation when ticking the particle system components.  ...

Native struct types that declare one or more non-UPROPERTY fields are not initialized with the default value from a modified Blueprint CDO.

UE - Gameplay - Blueprint - Feb 12, 2020

Dynamically-spawned instances of a Blueprint class go through an optimized property initialization pass (see UBlueprintGeneratedClass::BuildCustomPropertyListForPostConstruction() and InitProperties ...

Cannot compile a nativized Blueprint with a function that takes an interface as an input parameter and uses it inside the function (e.g. dynamic cast to object).

UE - Gameplay - Blueprint - May 27, 2020

Issue occurs because there is a legacy code path that forces all interface parameters to be declared as 'const' in function declarations, even if CPF_ConstParm is not set in exported C++ code. This ...