From 62f2d322b1e01ba0fcdcbb649dda94280838cf70 Mon Sep 17 00:00:00 2001 From: Collecting Date: Sun, 21 Dec 2025 00:37:20 +0000 Subject: [PATCH] fix: Get rid of placeholder Signed-off-by: Collecting --- src/citron/main.cpp | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/src/citron/main.cpp b/src/citron/main.cpp index b0692c9b7..e1458fe59 100644 --- a/src/citron/main.cpp +++ b/src/citron/main.cpp @@ -2272,11 +2272,9 @@ void GMainWindow::OnEmulationStopped() { render_window->hide(); loading_screen->hide(); loading_screen->Clear(); - if (game_list->IsEmpty()) { - game_list_placeholder->show(); - } else { - game_list->show(); - } + + game_list->show(); + game_list_placeholder->hide(); game_list->SetFilterFocus(); tas_label->clear(); input_subsystem->GetTas()->Stop();