diff --git a/UI/Store.cpp b/UI/Store.cpp index e619bac308..c6969c5753 100644 --- a/UI/Store.cpp +++ b/UI/Store.cpp @@ -523,9 +523,9 @@ void StoreScreen::CreateViews() { LinearLayout *topBar = root_->Add(new LinearLayout(ORIENT_HORIZONTAL, new LinearLayoutParams(FILL_PARENT, 64.0f))); topBar->Add(new Choice(di->T("Back"), new LinearLayoutParams(WRAP_CONTENT, FILL_PARENT)))->OnClick.Handle(this, &UIScreen::OnBack); titleText_ = new TextView(mm->T("PPSSPP Homebrew Store"), ALIGN_VCENTER, false, new LinearLayoutParams(WRAP_CONTENT, FILL_PARENT)); - titleText_->SetTextColor(screenManager()->getUIContext()->GetTheme().itemFocusedStyle.fgColor); + titleText_->SetTextColor(screenManager()->getUIContext()->GetTheme().itemDownStyle.fgColor); topBar->Add(titleText_); - topBar->SetBG(screenManager()->getUIContext()->GetTheme().itemFocusedStyle.background); + topBar->SetBG(screenManager()->getUIContext()->GetTheme().itemDownStyle.background); LinearLayout *content; if (connectionError_ || loading_) {