From cf983888cc781b6ce5550998d6b1c482000a990b Mon Sep 17 00:00:00 2001 From: Lioncash Date: Mon, 6 Aug 2018 14:28:01 -0400 Subject: [PATCH] qt/main: Collapse if statement in UpdateRecentFiles() Given the function accepts a boolean, we don't need to use an if statement here and repeat ourselves. --- src/yuzu/main.cpp | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/src/yuzu/main.cpp b/src/yuzu/main.cpp index e28679cd10..66e4ed5ba2 100644 --- a/src/yuzu/main.cpp +++ b/src/yuzu/main.cpp @@ -595,12 +595,8 @@ void GMainWindow::UpdateRecentFiles() { actions_recent_files[j]->setVisible(false); } - // Grey out the recent files menu if the list is empty - if (num_recent_files == 0) { - ui.menu_recent_files->setEnabled(false); - } else { - ui.menu_recent_files->setEnabled(true); - } + // Enable the recent files menu if the list isn't empty + ui.menu_recent_files->setEnabled(num_recent_files != 0); } void GMainWindow::OnGameListLoadFile(QString game_path) {