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

@ -162,7 +162,7 @@ void FIFOPlayerWindow::CreateWidgets()
void FIFOPlayerWindow::ConnectWidgets()
{
connect(m_load, &QPushButton::pressed, this, &FIFOPlayerWindow::LoadRecording);
connect(m_load, &QPushButton::clicked, this, &FIFOPlayerWindow::LoadRecording);
connect(m_save, &QPushButton::pressed, this, &FIFOPlayerWindow::SaveRecording);
connect(m_record, &QPushButton::pressed, this, &FIFOPlayerWindow::StartRecording);
connect(m_stop, &QPushButton::pressed, this, &FIFOPlayerWindow::StopRecording);