From 47b13f086dc7610cc95eb4aa07dd9310f2fb3b34 Mon Sep 17 00:00:00 2001 From: JordanTheToaster Date: Sun, 6 Apr 2025 20:20:46 +0100 Subject: [PATCH] GameListWidget: Enable mouse tracking --- pcsx2-qt/GameList/GameListWidget.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/pcsx2-qt/GameList/GameListWidget.cpp b/pcsx2-qt/GameList/GameListWidget.cpp index b2c04607b1..79d86e1549 100644 --- a/pcsx2-qt/GameList/GameListWidget.cpp +++ b/pcsx2-qt/GameList/GameListWidget.cpp @@ -181,6 +181,7 @@ void GameListWidget::initialize() m_table_view->setSelectionBehavior(QAbstractItemView::SelectRows); m_table_view->setContextMenuPolicy(Qt::CustomContextMenu); m_table_view->setAlternatingRowColors(true); + m_table_view->setMouseTracking(true); m_table_view->setShowGrid(false); m_table_view->setCurrentIndex({}); m_table_view->horizontalHeader()->setHighlightSections(false);