From 966d128025d888c6afb406f02ab6a2360f4643e7 Mon Sep 17 00:00:00 2001
From: vitor-k <vitor-kiguchi@hotmail.com>
Date: Sun, 8 Sep 2019 17:06:19 -0300
Subject: [PATCH] Remove newlines from the long title in row2

---
 src/citra_qt/game_list_p.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/citra_qt/game_list_p.h b/src/citra_qt/game_list_p.h
index 82c7fcaad..1bb26f759 100644
--- a/src/citra_qt/game_list_p.h
+++ b/src/citra_qt/game_list_p.h
@@ -220,7 +220,7 @@ public:
                                ? QStringLiteral("     ")
                                : QStringLiteral("\n     ");
                 }
-                row2 += display_texts.at(row_2_id);
+                row2 += display_texts.at(row_2_id).simplified();
             }
             return QString(row1 + row2);
         } else {