From fc69f9231a857b9c557fd2fa7074e37ef39249a0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Joshua=20Vanda=C3=ABle?= Date: Sun, 16 Aug 2026 16:04:37 +0200 Subject: [PATCH] GameList: Enable word wrap in grid view --- Source/Core/DolphinQt/GameList/GameList.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/DolphinQt/GameList/GameList.cpp b/Source/Core/DolphinQt/GameList/GameList.cpp index 1b0db770a9..483a35b245 100644 --- a/Source/Core/DolphinQt/GameList/GameList.cpp +++ b/Source/Core/DolphinQt/GameList/GameList.cpp @@ -359,7 +359,7 @@ void GameList::MakeGridView() m_grid->setViewMode(QListView::IconMode); m_grid->setResizeMode(QListView::Adjust); - m_grid->setUniformItemSizes(true); + m_grid->setWordWrap(true); m_grid->setContextMenuPolicy(Qt::CustomContextMenu); m_grid->setFrameStyle(QFrame::NoFrame);