diff --git a/sphaira/source/ui/menus/homebrew.cpp b/sphaira/source/ui/menus/homebrew.cpp index 6ae61dd..109de3d 100644 --- a/sphaira/source/ui/menus/homebrew.cpp +++ b/sphaira/source/ui/menus/homebrew.cpp @@ -67,6 +67,13 @@ Menu::Menu(u32 flags) : grid::Menu{"Homebrew"_i18n, flags} { }}) ); + // Add Back button only when entered via Menus (Not center, righit, left tab). + if (!(flags & MenuFlag_Tab)) { + this->SetAction(Button::B, Action{"Back"_i18n, [this](){ + this->SetPop(); + }}); + } + OnLayoutChange(); }