Files
UnrealEngineUWP/Engine/Source/Editor/SourceControlWindows/Private/SourceControlSettings.h
clint levijoki baa43a500d Added an editor project option to hide the 'Submit Content' menu action. This menu item is unwanted in some projects as it's not running any validation before submitting.
#preflight 63484914ce524ed356914926
#preflight 6349b46fa8717e9453e14b0b

[CL 22547966 by clint levijoki in ue5-main branch]
2022-10-15 02:16:54 -04:00

29 lines
787 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#pragma once
#include "UObject/Object.h"
#include "SourceControlSettings.generated.h"
/** Serializes source control window settings. */
UCLASS(config=Editor)
class USourceControlSettings : public UObject
{
GENERATED_BODY()
public:
USourceControlSettings() {}
UPROPERTY(config, EditAnywhere, Category="Source Control Changelist View")
bool bShowAssetTypeColumn = true;
UPROPERTY(config, EditAnywhere, Category="Source Control Changelist View")
bool bShowAssetLastModifiedTimeColumn = true;
UPROPERTY(config, EditAnywhere, Category="Source Control Changelist View")
bool bShowAssetCheckedOutByColumn = true;
UPROPERTY(EditAnywhere, config, Category="Source Control Tools")
bool bEnableSubmitContentMenuAction = true;
};