From db0ae2f7a0506060763f075463ea266b3313f1df Mon Sep 17 00:00:00 2001 From: ArtichOwO Date: Thu, 23 Sep 2021 00:43:17 +0200 Subject: [PATCH] [apps/shared] Fixed localization text bg --- apps/shared/localization_controller.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/shared/localization_controller.cpp b/apps/shared/localization_controller.cpp index f518999b3..b300e84f2 100644 --- a/apps/shared/localization_controller.cpp +++ b/apps/shared/localization_controller.cpp @@ -18,7 +18,7 @@ LocalizationController::ContentView::ContentView(LocalizationController * contro assert(k_numberOfCountryWarningLines == 2); // textMessages is not overflowed I18n::Message textMessages[k_numberOfCountryWarningLines] = {I18n::Message::CountryWarning1, I18n::Message::CountryWarning2}; for (int i = 0; i < k_numberOfCountryWarningLines; i++) { - m_countryWarningLines[i].setBackgroundColor(Palette::BackgroundHard); + m_countryWarningLines[i].setBackgroundColor(Palette::BackgroundApps); m_countryWarningLines[i].setFont(KDFont::SmallFont); m_countryWarningLines[i].setAlignment(0.5f, 0.5f); m_countryWarningLines[i].setMessage(textMessages[i]);