From e1638b93261414dcfc43df05d41bcdf7adbf691a Mon Sep 17 00:00:00 2001 From: Silent Date: Sun, 3 Nov 2019 15:01:35 +0100 Subject: [PATCH] Fix context menu showing twice in Game List --- rpcs3/rpcs3qt/game_list_frame.cpp | 4 ---- 1 file changed, 4 deletions(-) diff --git a/rpcs3/rpcs3qt/game_list_frame.cpp b/rpcs3/rpcs3qt/game_list_frame.cpp index 528e889abd..59922a4548 100644 --- a/rpcs3/rpcs3qt/game_list_frame.cpp +++ b/rpcs3/rpcs3qt/game_list_frame.cpp @@ -120,10 +120,6 @@ game_list_frame::game_list_frame(std::shared_ptr guiSettings, std: QMenu* configure = new QMenu(this); configure->addActions(m_columnActs); configure->exec(mapToGlobal(pos)); - - QMenu* pad_configure = new QMenu(this); - pad_configure->addActions(m_columnActs); - pad_configure->exec(mapToGlobal(pos)); }); connect(m_xgrid, &QTableWidget::itemDoubleClicked, this, &game_list_frame::doubleClickedSlot);