Skip to content

Commit

Permalink
Fix minor theme issue in Store, thanks Nabn00b.
Browse files Browse the repository at this point in the history
See #19550
  • Loading branch information
hrydgard committed Nov 4, 2024
1 parent 6bbb0bc commit 9fb759d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions UI/Store.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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<UIScreen>(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_) {
Expand Down

0 comments on commit 9fb759d

Please sign in to comment.