mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2025-02-18 04:45:39 +00:00
Standardized some theme warning log output.
This commit is contained in:
parent
a115b3f941
commit
44fe2f8fe7
|
@ -197,9 +197,9 @@ void BadgeComponent::applyTheme(const std::shared_ptr<ThemeData>& theme,
|
||||||
if (elem->has("horizontalAlignment")) {
|
if (elem->has("horizontalAlignment")) {
|
||||||
const std::string horizontalAlignment {elem->get<std::string>("horizontalAlignment")};
|
const std::string horizontalAlignment {elem->get<std::string>("horizontalAlignment")};
|
||||||
if (horizontalAlignment != "left" && horizontalAlignment != "right") {
|
if (horizontalAlignment != "left" && horizontalAlignment != "right") {
|
||||||
LOG(LogWarning)
|
LOG(LogWarning) << "BadgeComponent: Invalid theme configuration, <horizontalAlignment> "
|
||||||
<< "BadgeComponent: Invalid theme configuration, <horizontalAlignment> set to \""
|
"defined as \""
|
||||||
<< horizontalAlignment << "\"";
|
<< horizontalAlignment << "\"";
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
mFlexboxComponent.setAlignment(horizontalAlignment);
|
mFlexboxComponent.setAlignment(horizontalAlignment);
|
||||||
|
@ -209,8 +209,9 @@ void BadgeComponent::applyTheme(const std::shared_ptr<ThemeData>& theme,
|
||||||
else if (elem->has("alignment")) {
|
else if (elem->has("alignment")) {
|
||||||
const std::string alignment {elem->get<std::string>("alignment")};
|
const std::string alignment {elem->get<std::string>("alignment")};
|
||||||
if (alignment != "left" && alignment != "right") {
|
if (alignment != "left" && alignment != "right") {
|
||||||
LOG(LogWarning) << "BadgeComponent: Invalid theme configuration, <alignment> set to \""
|
LOG(LogWarning)
|
||||||
<< alignment << "\"";
|
<< "BadgeComponent: Invalid theme configuration, <alignment> defined as \""
|
||||||
|
<< alignment << "\"";
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
mFlexboxComponent.setAlignment(alignment);
|
mFlexboxComponent.setAlignment(alignment);
|
||||||
|
@ -220,8 +221,9 @@ void BadgeComponent::applyTheme(const std::shared_ptr<ThemeData>& theme,
|
||||||
if (elem->has("direction")) {
|
if (elem->has("direction")) {
|
||||||
const std::string direction {elem->get<std::string>("direction")};
|
const std::string direction {elem->get<std::string>("direction")};
|
||||||
if (direction != "row" && direction != "column") {
|
if (direction != "row" && direction != "column") {
|
||||||
LOG(LogWarning) << "BadgeComponent: Invalid theme configuration, <direction> set to \""
|
LOG(LogWarning)
|
||||||
<< direction << "\"";
|
<< "BadgeComponent: Invalid theme configuration, <direction> defined as \""
|
||||||
|
<< direction << "\"";
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
mFlexboxComponent.setDirection(direction);
|
mFlexboxComponent.setDirection(direction);
|
||||||
|
@ -231,7 +233,7 @@ void BadgeComponent::applyTheme(const std::shared_ptr<ThemeData>& theme,
|
||||||
if (elem->has("lines")) {
|
if (elem->has("lines")) {
|
||||||
const unsigned int lines {elem->get<unsigned int>("lines")};
|
const unsigned int lines {elem->get<unsigned int>("lines")};
|
||||||
if (lines < 1 || lines > 10) {
|
if (lines < 1 || lines > 10) {
|
||||||
LOG(LogWarning) << "BadgeComponent: Invalid theme configuration, <lines> set to \""
|
LOG(LogWarning) << "BadgeComponent: Invalid theme configuration, <lines> defined as \""
|
||||||
<< lines << "\"";
|
<< lines << "\"";
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
|
@ -243,7 +245,7 @@ void BadgeComponent::applyTheme(const std::shared_ptr<ThemeData>& theme,
|
||||||
const unsigned int itemsPerLine {elem->get<unsigned int>("itemsPerLine")};
|
const unsigned int itemsPerLine {elem->get<unsigned int>("itemsPerLine")};
|
||||||
if (itemsPerLine < 1 || itemsPerLine > 10) {
|
if (itemsPerLine < 1 || itemsPerLine > 10) {
|
||||||
LOG(LogWarning)
|
LOG(LogWarning)
|
||||||
<< "BadgeComponent: Invalid theme configuration, <itemsPerLine> set to \""
|
<< "BadgeComponent: Invalid theme configuration, <itemsPerLine> defined as \""
|
||||||
<< itemsPerLine << "\"";
|
<< itemsPerLine << "\"";
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
|
@ -256,8 +258,9 @@ void BadgeComponent::applyTheme(const std::shared_ptr<ThemeData>& theme,
|
||||||
if ((itemMargin.x != -1.0 && itemMargin.y != -1.0) &&
|
if ((itemMargin.x != -1.0 && itemMargin.y != -1.0) &&
|
||||||
(itemMargin.x < 0.0f || itemMargin.x > 0.2f || itemMargin.y < 0.0f ||
|
(itemMargin.x < 0.0f || itemMargin.x > 0.2f || itemMargin.y < 0.0f ||
|
||||||
itemMargin.y > 0.2f)) {
|
itemMargin.y > 0.2f)) {
|
||||||
LOG(LogWarning) << "BadgeComponent: Invalid theme configuration, <itemMargin> set to \""
|
LOG(LogWarning)
|
||||||
<< itemMargin.x << " " << itemMargin.y << "\"";
|
<< "BadgeComponent: Invalid theme configuration, <itemMargin> defined as \""
|
||||||
|
<< itemMargin.x << " " << itemMargin.y << "\"";
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
mFlexboxComponent.setItemMargin(itemMargin);
|
mFlexboxComponent.setItemMargin(itemMargin);
|
||||||
|
@ -269,7 +272,7 @@ void BadgeComponent::applyTheme(const std::shared_ptr<ThemeData>& theme,
|
||||||
if (controllerPos.x < -1.0f || controllerPos.x > 2.0f || controllerPos.y < -1.0f ||
|
if (controllerPos.x < -1.0f || controllerPos.x > 2.0f || controllerPos.y < -1.0f ||
|
||||||
controllerPos.y > 2.0f) {
|
controllerPos.y > 2.0f) {
|
||||||
LOG(LogWarning)
|
LOG(LogWarning)
|
||||||
<< "BadgeComponent: Invalid theme configuration, <controllerPos> set to \""
|
<< "BadgeComponent: Invalid theme configuration, <controllerPos> defined as \""
|
||||||
<< controllerPos.x << " " << controllerPos.y << "\"";
|
<< controllerPos.x << " " << controllerPos.y << "\"";
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
|
@ -281,7 +284,7 @@ void BadgeComponent::applyTheme(const std::shared_ptr<ThemeData>& theme,
|
||||||
const float controllerSize = elem->get<float>("controllerSize");
|
const float controllerSize = elem->get<float>("controllerSize");
|
||||||
if (controllerSize < 0.1f || controllerSize > 2.0f) {
|
if (controllerSize < 0.1f || controllerSize > 2.0f) {
|
||||||
LOG(LogWarning)
|
LOG(LogWarning)
|
||||||
<< "BadgeComponent: Invalid theme configuration, <controllerSize> set to \""
|
<< "BadgeComponent: Invalid theme configuration, <controllerSize> defined as \""
|
||||||
<< controllerSize << "\"";
|
<< controllerSize << "\"";
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
|
|
|
@ -334,7 +334,7 @@ void CarouselComponent::applyTheme(const std::shared_ptr<ThemeData>& theme,
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
LOG(LogWarning) << "CarouselComponent: Invalid theme configuration, property "
|
LOG(LogWarning) << "CarouselComponent: Invalid theme configuration, property "
|
||||||
"<type> set to \""
|
"<type> defined as \""
|
||||||
<< type << "\"";
|
<< type << "\"";
|
||||||
mType = HORIZONTAL;
|
mType = HORIZONTAL;
|
||||||
}
|
}
|
||||||
|
@ -358,7 +358,7 @@ void CarouselComponent::applyTheme(const std::shared_ptr<ThemeData>& theme,
|
||||||
else {
|
else {
|
||||||
mColorGradientHorizontal = true;
|
mColorGradientHorizontal = true;
|
||||||
LOG(LogWarning) << "CarouselComponent: Invalid theme configuration, property "
|
LOG(LogWarning) << "CarouselComponent: Invalid theme configuration, property "
|
||||||
"<gradientType> set to \""
|
"<gradientType> defined as \""
|
||||||
<< gradientType << "\"";
|
<< gradientType << "\"";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -406,7 +406,7 @@ void CarouselComponent::applyTheme(const std::shared_ptr<ThemeData>& theme,
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
LOG(LogWarning) << "CarouselComponent: Invalid theme configuration, property "
|
LOG(LogWarning) << "CarouselComponent: Invalid theme configuration, property "
|
||||||
"<logoHorizontalAlignment> set to \""
|
"<logoHorizontalAlignment> defined as \""
|
||||||
<< alignment << "\"";
|
<< alignment << "\"";
|
||||||
mLogoHorizontalAlignment = ALIGN_CENTER;
|
mLogoHorizontalAlignment = ALIGN_CENTER;
|
||||||
}
|
}
|
||||||
|
@ -425,7 +425,7 @@ void CarouselComponent::applyTheme(const std::shared_ptr<ThemeData>& theme,
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
LOG(LogWarning) << "CarouselComponent: Invalid theme configuration, property "
|
LOG(LogWarning) << "CarouselComponent: Invalid theme configuration, property "
|
||||||
"<logoVerticalAlignment> set to \""
|
"<logoVerticalAlignment> defined as \""
|
||||||
<< alignment << "\"";
|
<< alignment << "\"";
|
||||||
mLogoVerticalAlignment = ALIGN_CENTER;
|
mLogoVerticalAlignment = ALIGN_CENTER;
|
||||||
}
|
}
|
||||||
|
@ -456,7 +456,7 @@ void CarouselComponent::applyTheme(const std::shared_ptr<ThemeData>& theme,
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
LOG(LogWarning) << "CarouselComponent: Invalid theme configuration, property "
|
LOG(LogWarning) << "CarouselComponent: Invalid theme configuration, property "
|
||||||
"<logoAlignment> set to \""
|
"<logoAlignment> defined as \""
|
||||||
<< alignment << "\"";
|
<< alignment << "\"";
|
||||||
mLogoHorizontalAlignment = ALIGN_CENTER;
|
mLogoHorizontalAlignment = ALIGN_CENTER;
|
||||||
mLogoVerticalAlignment = ALIGN_CENTER;
|
mLogoVerticalAlignment = ALIGN_CENTER;
|
||||||
|
@ -492,9 +492,9 @@ void CarouselComponent::applyTheme(const std::shared_ptr<ThemeData>& theme,
|
||||||
mText = elem->get<std::string>("text");
|
mText = elem->get<std::string>("text");
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
LOG(LogWarning)
|
LOG(LogWarning) << "CarouselComponent: Invalid theme configuration, property "
|
||||||
<< "CarouselComponent: Invalid theme configuration, property <letterCase> set to \""
|
"<letterCase> defined as \""
|
||||||
<< letterCase << "\"";
|
<< letterCase << "\"";
|
||||||
mText = elem->get<std::string>("text");
|
mText = elem->get<std::string>("text");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -139,7 +139,7 @@ void DateTimeComponent::applyTheme(const std::shared_ptr<ThemeData>& theme,
|
||||||
setHorizontalAlignment(ALIGN_RIGHT);
|
setHorizontalAlignment(ALIGN_RIGHT);
|
||||||
else
|
else
|
||||||
LOG(LogWarning) << "DateTimeComponent: Invalid theme configuration, property "
|
LOG(LogWarning) << "DateTimeComponent: Invalid theme configuration, property "
|
||||||
"<horizontalAlignment> set to \""
|
"<horizontalAlignment> defined as \""
|
||||||
<< str << "\"";
|
<< str << "\"";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -153,7 +153,7 @@ void DateTimeComponent::applyTheme(const std::shared_ptr<ThemeData>& theme,
|
||||||
setVerticalAlignment(ALIGN_BOTTOM);
|
setVerticalAlignment(ALIGN_BOTTOM);
|
||||||
else
|
else
|
||||||
LOG(LogWarning) << "DateTimeComponent: Invalid theme configuration, property "
|
LOG(LogWarning) << "DateTimeComponent: Invalid theme configuration, property "
|
||||||
"<verticalAlignment> set to \""
|
"<verticalAlignment> defined as \""
|
||||||
<< str << "\"";
|
<< str << "\"";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -168,7 +168,7 @@ void DateTimeComponent::applyTheme(const std::shared_ptr<ThemeData>& theme,
|
||||||
setHorizontalAlignment(ALIGN_RIGHT);
|
setHorizontalAlignment(ALIGN_RIGHT);
|
||||||
else
|
else
|
||||||
LOG(LogWarning) << "DateTimeComponent: Invalid theme configuration, property "
|
LOG(LogWarning) << "DateTimeComponent: Invalid theme configuration, property "
|
||||||
"<alignment> set to \""
|
"<alignment> defined as \""
|
||||||
<< str << "\"";
|
<< str << "\"";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -193,9 +193,9 @@ void DateTimeComponent::applyTheme(const std::shared_ptr<ThemeData>& theme,
|
||||||
setCapitalize(true);
|
setCapitalize(true);
|
||||||
}
|
}
|
||||||
else if (letterCase != "none") {
|
else if (letterCase != "none") {
|
||||||
LOG(LogWarning)
|
LOG(LogWarning) << "DateTimeComponent: Invalid theme configuration, property "
|
||||||
<< "DateTimeComponent: Invalid theme configuration, property <letterCase> set to \""
|
"<letterCase> defined as \""
|
||||||
<< letterCase << "\"";
|
<< letterCase << "\"";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -126,7 +126,7 @@ public:
|
||||||
else {
|
else {
|
||||||
mGameSelection = GameSelection::RANDOM;
|
mGameSelection = GameSelection::RANDOM;
|
||||||
LOG(LogWarning) << "GameSelectorComponent: Invalid theme configuration, property "
|
LOG(LogWarning) << "GameSelectorComponent: Invalid theme configuration, property "
|
||||||
"<selection> set to \""
|
"<selection> defined as \""
|
||||||
<< selection << "\"";
|
<< selection << "\"";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -514,7 +514,7 @@ void ImageComponent::applyTheme(const std::shared_ptr<ThemeData>& theme,
|
||||||
else {
|
else {
|
||||||
mLinearInterpolation = false;
|
mLinearInterpolation = false;
|
||||||
LOG(LogWarning) << "ImageComponent: Invalid theme configuration, property "
|
LOG(LogWarning) << "ImageComponent: Invalid theme configuration, property "
|
||||||
"<interpolation> set to \""
|
"<interpolation> defined as \""
|
||||||
<< interpolation << "\"";
|
<< interpolation << "\"";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -553,7 +553,7 @@ void ImageComponent::applyTheme(const std::shared_ptr<ThemeData>& theme,
|
||||||
else {
|
else {
|
||||||
setColorGradientHorizontal(true);
|
setColorGradientHorizontal(true);
|
||||||
LOG(LogWarning) << "ImageComponent: Invalid theme configuration, property "
|
LOG(LogWarning) << "ImageComponent: Invalid theme configuration, property "
|
||||||
"<gradientType> set to \""
|
"<gradientType> defined as \""
|
||||||
<< gradientType << "\"";
|
<< gradientType << "\"";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -231,8 +231,9 @@ void LottieAnimComponent::applyTheme(const std::shared_ptr<ThemeData>& theme,
|
||||||
if (elem->has("size")) {
|
if (elem->has("size")) {
|
||||||
glm::vec2 size = elem->get<glm::vec2>("size");
|
glm::vec2 size = elem->get<glm::vec2>("size");
|
||||||
if (size.x == 0.0f && size.y == 0.0f) {
|
if (size.x == 0.0f && size.y == 0.0f) {
|
||||||
LOG(LogWarning) << "LottieAnimComponent: Invalid theme configuration, <size> set to \""
|
LOG(LogWarning)
|
||||||
<< size.x << " " << size.y << "\"";
|
<< "LottieAnimComponent: Invalid theme configuration, <size> defined as \""
|
||||||
|
<< size.x << " " << size.y << "\"";
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -240,8 +241,9 @@ void LottieAnimComponent::applyTheme(const std::shared_ptr<ThemeData>& theme,
|
||||||
if (elem->has("speed")) {
|
if (elem->has("speed")) {
|
||||||
const float speed {elem->get<float>("speed")};
|
const float speed {elem->get<float>("speed")};
|
||||||
if (speed < 0.2f || speed > 3.0f) {
|
if (speed < 0.2f || speed > 3.0f) {
|
||||||
LOG(LogWarning) << "LottieAnimComponent: Invalid theme configuration, <speed> set to \""
|
LOG(LogWarning)
|
||||||
<< std::fixed << std::setprecision(1) << speed << "\"";
|
<< "LottieAnimComponent: Invalid theme configuration, <speed> defined as \""
|
||||||
|
<< std::fixed << std::setprecision(1) << speed << "\"";
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
mSpeedModifier = speed;
|
mSpeedModifier = speed;
|
||||||
|
@ -271,7 +273,7 @@ void LottieAnimComponent::applyTheme(const std::shared_ptr<ThemeData>& theme,
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
LOG(LogWarning)
|
LOG(LogWarning)
|
||||||
<< "LottieAnimComponent: Invalid theme configuration, <direction> set to \""
|
<< "LottieAnimComponent: Invalid theme configuration, <direction> defined as \""
|
||||||
<< direction << "\"";
|
<< direction << "\"";
|
||||||
mStartDirection = "normal";
|
mStartDirection = "normal";
|
||||||
mAlternate = false;
|
mAlternate = false;
|
||||||
|
|
|
@ -398,7 +398,7 @@ void TextComponent::applyTheme(const std::shared_ptr<ThemeData>& theme,
|
||||||
else
|
else
|
||||||
LOG(LogWarning) << componentName
|
LOG(LogWarning) << componentName
|
||||||
<< ": Invalid theme configuration, property "
|
<< ": Invalid theme configuration, property "
|
||||||
"<horizontalAlignment> set to \""
|
"<horizontalAlignment> defined as \""
|
||||||
<< str << "\"";
|
<< str << "\"";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -413,7 +413,7 @@ void TextComponent::applyTheme(const std::shared_ptr<ThemeData>& theme,
|
||||||
else
|
else
|
||||||
LOG(LogWarning) << componentName
|
LOG(LogWarning) << componentName
|
||||||
<< ": Invalid theme configuration, property "
|
<< ": Invalid theme configuration, property "
|
||||||
"<verticalAlignment> set to \""
|
"<verticalAlignment> defined as \""
|
||||||
<< str << "\"";
|
<< str << "\"";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -429,7 +429,7 @@ void TextComponent::applyTheme(const std::shared_ptr<ThemeData>& theme,
|
||||||
else
|
else
|
||||||
LOG(LogWarning) << componentName
|
LOG(LogWarning) << componentName
|
||||||
<< ": Invalid theme configuration, property "
|
<< ": Invalid theme configuration, property "
|
||||||
"<alignment> set to \""
|
"<alignment> defined as \""
|
||||||
<< str << "\"";
|
<< str << "\"";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -455,7 +455,7 @@ void TextComponent::applyTheme(const std::shared_ptr<ThemeData>& theme,
|
||||||
}
|
}
|
||||||
else if (letterCase != "none") {
|
else if (letterCase != "none") {
|
||||||
LOG(LogWarning)
|
LOG(LogWarning)
|
||||||
<< "TextComponent: Invalid theme configuration, property <letterCase> set to \""
|
<< "TextComponent: Invalid theme configuration, property <letterCase> defined as \""
|
||||||
<< letterCase << "\"";
|
<< letterCase << "\"";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -487,7 +487,7 @@ void TextListComponent<T>::applyTheme(const std::shared_ptr<ThemeData>& theme,
|
||||||
else {
|
else {
|
||||||
setSelectorColorGradientHorizontal(true);
|
setSelectorColorGradientHorizontal(true);
|
||||||
LOG(LogWarning) << "TextListComponent: Invalid theme configuration, property "
|
LOG(LogWarning) << "TextListComponent: Invalid theme configuration, property "
|
||||||
"<selectorGradientType> set to \""
|
"<selectorGradientType> defined as \""
|
||||||
<< gradientType << "\"";
|
<< gradientType << "\"";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -515,7 +515,7 @@ void TextListComponent<T>::applyTheme(const std::shared_ptr<ThemeData>& theme,
|
||||||
setAlignment(ALIGN_RIGHT);
|
setAlignment(ALIGN_RIGHT);
|
||||||
else
|
else
|
||||||
LOG(LogWarning) << "TextListComponent: Invalid theme configuration, property "
|
LOG(LogWarning) << "TextListComponent: Invalid theme configuration, property "
|
||||||
"<horizontalAlignment> set to \""
|
"<horizontalAlignment> defined as \""
|
||||||
<< str << "\"";
|
<< str << "\"";
|
||||||
}
|
}
|
||||||
// Legacy themes only.
|
// Legacy themes only.
|
||||||
|
@ -529,7 +529,7 @@ void TextListComponent<T>::applyTheme(const std::shared_ptr<ThemeData>& theme,
|
||||||
setAlignment(ALIGN_RIGHT);
|
setAlignment(ALIGN_RIGHT);
|
||||||
else
|
else
|
||||||
LOG(LogWarning) << "TextListComponent: Invalid theme configuration, property "
|
LOG(LogWarning) << "TextListComponent: Invalid theme configuration, property "
|
||||||
"<alignment> set to \""
|
"<alignment> defined as \""
|
||||||
<< str << "\"";
|
<< str << "\"";
|
||||||
}
|
}
|
||||||
if (elem->has("horizontalMargin")) {
|
if (elem->has("horizontalMargin")) {
|
||||||
|
@ -551,9 +551,9 @@ void TextListComponent<T>::applyTheme(const std::shared_ptr<ThemeData>& theme,
|
||||||
setCapitalize(true);
|
setCapitalize(true);
|
||||||
}
|
}
|
||||||
else if (letterCase != "none") {
|
else if (letterCase != "none") {
|
||||||
LOG(LogWarning)
|
LOG(LogWarning) << "TextListComponent: Invalid theme configuration, property "
|
||||||
<< "TextListComponent: Invalid theme configuration, property <letterCase> set to \""
|
"<letterCase> defined as \""
|
||||||
<< letterCase << "\"";
|
<< letterCase << "\"";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -147,7 +147,7 @@ void VideoComponent::applyTheme(const std::shared_ptr<ThemeData>& theme,
|
||||||
else {
|
else {
|
||||||
mStaticImage.setLinearInterpolation(false);
|
mStaticImage.setLinearInterpolation(false);
|
||||||
LOG(LogWarning) << "ImageComponent: Invalid theme configuration, property "
|
LOG(LogWarning) << "ImageComponent: Invalid theme configuration, property "
|
||||||
"<interpolation> set to \""
|
"<interpolation> defined as \""
|
||||||
<< interpolation << "\"";
|
<< interpolation << "\"";
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue