Remove stretch option.

This commit is contained in:
Skyth 2025-01-09 13:53:22 +03:00
parent c337c67dec
commit 97bc5d1999
2 changed files with 0 additions and 3 deletions

View file

@ -304,7 +304,6 @@ CONFIG_DEFINE_ENUM_LOCALE(EUIScaleMode)
{ {
ELanguage::English, ELanguage::English,
{ {
{ EUIScaleMode::Stretch, { "STRETCH", "Stretch: the UI will stretch to the display." } },
{ EUIScaleMode::Edge, { "EDGE", "Edge: the UI will anchor to the edges of the display." } }, { EUIScaleMode::Edge, { "EDGE", "Edge: the UI will anchor to the edges of the display." } },
{ EUIScaleMode::Centre, { "CENTER", "Center: the UI will anchor to the center of the display." } }, { EUIScaleMode::Centre, { "CENTER", "Center: the UI will anchor to the center of the display." } },
} }

View file

@ -260,14 +260,12 @@ CONFIG_DEFINE_ENUM_TEMPLATE(EMotionBlur)
enum class EUIScaleMode : uint32_t enum class EUIScaleMode : uint32_t
{ {
Stretch,
Edge, Edge,
Centre Centre
}; };
CONFIG_DEFINE_ENUM_TEMPLATE(EUIScaleMode) CONFIG_DEFINE_ENUM_TEMPLATE(EUIScaleMode)
{ {
{ "Stretch", EUIScaleMode::Stretch },
{ "Edge", EUIScaleMode::Edge }, { "Edge", EUIScaleMode::Edge },
{ "Centre", EUIScaleMode::Centre }, { "Centre", EUIScaleMode::Centre },
{ "Center", EUIScaleMode::Centre } { "Center", EUIScaleMode::Centre }