Issues with global invalidation (MoviePlayer)

UE - Editor - UI Systems - Sep 27, 2024

It was mentioned that the global invalidation should be toggled off during loading screen and subsequently restore the state after. A request was made for this dynamic behavior be part of the engin ...

Preview Text display on Font Editor does not apply SubFontFamily setting

UE - Editor - UI Systems - Sep 17, 2024

The Preview text display in the Font Editor does not apply the Sub-Font family settings. Only the Default Font Family and Fallback Font Family can be applied to the display. ...

Does FSlateElementBatcher::AddCachedElements need to check if r.HDR.UI.CompositeMode is enabled?

UE - Editor - UI Systems - Aug 28, 2024

When a specific configuration of HDR cvars are set, PIE in a New Editor Window will not render the game world. Settings (For DefaultEngine.ini): ```[SystemSettings] r.AllowHDR=1 r.HDR.Display.Color ...

Confirmation Dialog common UI in the Lyra Starter Game loses focus for gamepads after closing.

UE - Editor - UI Systems - Aug 20, 2024

When changing the language options in the default Lyra Starter Game project (5.3 and 5.4) with a controller, the settings menu loses focus after closing the confirmation dialog. Focus can only then ...

Editor numeric input fields don't support double precision numbers.

UE - Editor - UI Systems - Aug 9, 2024

Even if we support double precision numbers at core, it's impossible to enter a small number in the numeric fields.  It makes sense for floats and avoids bloating the UI, but I remember a discussio ...

Widget Blueprint breakpoints hit during a Tick event do not engage the debugger.

UE - Editor - UI Systems - Jun 13, 2024

The user comment on the Salesforce issue " This is a regression from the behaviour in 5.3.X, and I've reproduced it in 5.4.0, 5.4.1, and 5.4.2. The specific issue/change that caused this regression ...

LoadingScreen by MoviePlayer doesn't support Material in UE5.4

UE - Editor - UI Systems - Jun 6, 2024

An assert crash is now triggered when set a widget using material to WidgetLoadingScreen of FLoadingScreenAttributes then call FDefaultGameMoviePlayer::SetupLoadingScreen(). The ensureMsgf in quest ...

Crash when exiting editor before EditorUtilityTask completes

UE - Editor - UI Systems - May 29, 2024

If exiting the editor before the EditorUtilityTask completes, it crashes. It will not crash if canceling the UtilityTask and then exit the editor. The following implementation does not allow destruc ...

"Consume pointer input" on Common User Widget does not work on iOS, FReply::Handled not respected

UE - Editor - UI Systems - Apr 29, 2024

From a UDN, they also mentioned:  Update: I added CommonUI to the test project to try the "Consume pointer input" setting. It behaves the same way as our custom input blocking widget in that the in ...

IME does not work in EditableTextBox in WidgetComponent

UE - Editor - UI Systems - Apr 5, 2024

WidgetComponent controls widgets through VirtualWindow, but VirtualWindow does not have HWND, so IME cannot be enabled. The following workaround enables IME activation. void FSlateEditableTextLay ...