Rename UI Scale Mode to UI Alignment Mode

This commit is contained in:
Hyper
2025-02-08 12:09:15 +00:00
parent e3ac47a797
commit d696524dbf
10 changed files with 22 additions and 22 deletions
+4 -4
View File
@@ -376,11 +376,11 @@ CONFIG_DEFINE_ENUM_TEMPLATE(ECutsceneAspectRatio)
{ "Unlocked", ECutsceneAspectRatio::Unlocked }
};
CONFIG_DEFINE_ENUM_TEMPLATE(EUIScaleMode)
CONFIG_DEFINE_ENUM_TEMPLATE(EUIAlignmentMode)
{
{ "Edge", EUIScaleMode::Edge },
{ "Centre", EUIScaleMode::Centre },
{ "Center", EUIScaleMode::Centre }
{ "Edge", EUIAlignmentMode::Edge },
{ "Centre", EUIAlignmentMode::Centre },
{ "Center", EUIAlignmentMode::Centre }
};
#undef CONFIG_DEFINE
+1 -1
View File
@@ -138,7 +138,7 @@ enum class ECutsceneAspectRatio : uint32_t
Unlocked
};
enum class EUIScaleMode : uint32_t
enum class EUIAlignmentMode : uint32_t
{
Edge,
Centre
+1 -1
View File
@@ -96,7 +96,7 @@ CONFIG_DEFINE_ENUM("Video", EDepthOfFieldQuality, DepthOfFieldQuality, EDepthOfF
CONFIG_DEFINE_ENUM_LOCALISED("Video", EMotionBlur, MotionBlur, EMotionBlur::Original);
CONFIG_DEFINE_LOCALISED("Video", bool, XboxColorCorrection, false);
CONFIG_DEFINE_ENUM_LOCALISED("Video", ECutsceneAspectRatio, CutsceneAspectRatio, ECutsceneAspectRatio::Original);
CONFIG_DEFINE_ENUM_LOCALISED("Video", EUIScaleMode, UIScaleMode, EUIScaleMode::Edge);
CONFIG_DEFINE_ENUM_LOCALISED("Video", EUIAlignmentMode, UIAlignmentMode, EUIAlignmentMode::Edge);
CONFIG_DEFINE_HIDDEN("Exports", bool, AllowCancellingUnleash, false);
CONFIG_DEFINE_HIDDEN("Exports", bool, DisableAutoSaveWarning, false);