Files
UnrealEngineUWP/Engine/Source/Developer/SourceControl/Private/SourceControlCVars.cpp
wouter burgers ddaa200319 SourceControl: Added cvar to force the modal dialog to always show up as a modal dialog, ignoring the preference of the calling code.
#preflight 64102f84c41a0a2a77063d17

[CL 24633200 by wouter burgers in ue5-main branch]
2023-03-14 07:39:31 -04:00

24 lines
841 B
C++

// Copyright Epic Games, Inc. All Rights Reserved.
#include "SourceControlCVars.h"
namespace SourceControlCVars
{
TAutoConsoleVariable<bool> CVarSourceControlEnableRevertFromSceneOutliner(
TEXT("SourceControl.Revert.EnableFromSceneOutliner"),
false,
TEXT("Allows a SourceControl 'Revert' operation to be triggered from the SceneOutliner."),
ECVF_Default);
TAutoConsoleVariable<bool> CVarSourceControlEnableRevertFromSubmitWidget(
TEXT("SourceControl.Revert.EnableFromSubmitWidget"),
false,
TEXT("Allows a SourceControl 'Revert' operation to be triggered from the SubmitWidget."),
ECVF_Default);
TAutoConsoleVariable<bool> CVarSourceControlEnableLoginDialogModal(
TEXT("SourceControl.LoginDialog.ForceModal"),
false,
TEXT("Forces the SourceControl 'Login Dialog' to always be a modal dialog."),
ECVF_Default);
}