Fix context menu showing twice in Game List

This commit is contained in:
Silent 2019-11-03 15:01:35 +01:00 committed by Megamouse
parent 7475be99ab
commit e1638b9326
1 changed files with 0 additions and 4 deletions

View File

@ -120,10 +120,6 @@ game_list_frame::game_list_frame(std::shared_ptr<gui_settings> guiSettings, std:
QMenu* configure = new QMenu(this); QMenu* configure = new QMenu(this);
configure->addActions(m_columnActs); configure->addActions(m_columnActs);
configure->exec(mapToGlobal(pos)); 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); connect(m_xgrid, &QTableWidget::itemDoubleClicked, this, &game_list_frame::doubleClickedSlot);