You've already forked UnrealEngineUWP
mirror of
https://github.com/izzy2lost/UnrealEngineUWP.git
synced 2026-03-26 18:15:20 -07:00
UETOOL-291 - Improve the data table UI The column sizes in the data table can now be resized as desired, and also default to being sized to match their content rather than as a simple proportion of their parent size. Any resized columns are remembered between editing sessions. The data table view now scrollable horizontally as well as vertically to account for the fact that the data may now be wider than the current view. [CL 2495732 by Jamie Dale in Main branch]
28 lines
562 B
C#
28 lines
562 B
C#
// Copyright 1998-2015 Epic Games, Inc. All Rights Reserved.
|
|
|
|
using UnrealBuildTool;
|
|
|
|
public class DataTableEditor : ModuleRules
|
|
{
|
|
public DataTableEditor(TargetInfo Target)
|
|
{
|
|
PublicIncludePathModuleNames.Add("LevelEditor");
|
|
|
|
PrivateDependencyModuleNames.AddRange(
|
|
new string[] {
|
|
"Core",
|
|
"CoreUObject",
|
|
"Engine",
|
|
"InputCore",
|
|
"Slate",
|
|
"SlateCore",
|
|
"EditorStyle",
|
|
"PropertyEditor",
|
|
"UnrealEd",
|
|
"Json"
|
|
}
|
|
);
|
|
|
|
DynamicallyLoadedModuleNames.Add("WorkspaceMenuStructure");
|
|
}
|
|
} |