Skip to content

Commit

Permalink
Merge branch '5.1'
Browse files Browse the repository at this point in the history
  • Loading branch information
goncasmage1 committed Feb 12, 2023
2 parents 5519f1b + 510cc44 commit fdb890d
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions Source/UINavigation/Private/UINavWidget.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2891,6 +2891,11 @@ void UUINavWidget::MenuNavigate(const ENavigationDirection Direction)
template<typename T>
T* UUINavWidget::GetOuterObject(const UObject* const Object)
{
if (!IsValid(Object))
{
return nullptr;
}

T* OuterObject = Cast<T>(Object->GetOuter());
if (OuterObject != nullptr)
{
Expand Down
2 changes: 1 addition & 1 deletion UINavigation.uplugin
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"FileVersion": 3,
"Version": 1,
"VersionName": "2.25.2",
"VersionName": "2.25.3",
"FriendlyName": "UI Navigation",
"Description": "A plugin that allows you to easily setup mouse, keyboard and controller navigation in UMG, among other things.",
"Category": "User Interface",
Expand Down

0 comments on commit fdb890d

Please sign in to comment.