You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
#jira UETOOL-4267 #rb Matt.Kuhlenschmidt, Vincent.Gauthier, Prajwal.Manjunath #preflight 6141ffeb4778fa000124a7d8 [CL 17520627 by daren cheng in ue5-main branch]
33 lines
869 B
C++
33 lines
869 B
C++
// Copyright Epic Games, Inc. All Rights Reserved.
|
|
|
|
#include "Settings/WidgetDesignerSettings.h"
|
|
|
|
UWidgetDesignerSettings::UWidgetDesignerSettings()
|
|
{
|
|
|
|
Favorites = CreateDefaultSubobject<UWidgetPaletteFavorites>(TEXT("WidgetPaletteFavorites"));
|
|
|
|
CategoryName = TEXT("ContentEditors");
|
|
|
|
GridSnapEnabled = true;
|
|
GridSnapSize = 4;
|
|
bShowOutlines = true;
|
|
bExecutePreConstructEvent = true;
|
|
bRespectLocks = true;
|
|
CreateOnCompile = EDisplayOnCompile::DoC_ErrorsOrWarnings;
|
|
DismissOnCompile = EDisplayOnCompile::DoC_ErrorsOrWarnings;
|
|
}
|
|
|
|
#if WITH_EDITOR
|
|
|
|
FText UWidgetDesignerSettings::GetSectionText() const
|
|
{
|
|
return NSLOCTEXT("UMG", "WidgetDesignerSettingsName", "Widget Designer");
|
|
}
|
|
|
|
FText UWidgetDesignerSettings::GetSectionDescription() const
|
|
{
|
|
return NSLOCTEXT("UMG", "WidgetDesignerSettingsDescription", "Configure options for the Widget Designer.");
|
|
}
|
|
|
|
#endif |