Qt: Fix add button not releasing

This commit is contained in:
chargeflux
2019-04-22 19:44:00 -04:00
parent e575fa92d7
commit cd5f42cee0
4 changed files with 4 additions and 4 deletions

View File

@ -143,7 +143,7 @@ QGroupBox* PathPane::MakeGameFolderBox()
connect(auto_checkbox, &QCheckBox::toggled, &Settings::Instance(),
&Settings::SetAutoRefreshEnabled);
connect(add, &QPushButton::pressed, this, &PathPane::Browse);
connect(add, &QPushButton::clicked, this, &PathPane::Browse);
connect(m_remove_path, &QPushButton::pressed, this, &PathPane::RemovePath);
game_box->setLayout(vlayout);