fixed SearchWindow memory leak (#1899)

This commit is contained in:
fourtf 2020-08-22 22:35:07 +02:00 committed by GitHub
parent 359adbce15
commit ebb4ffe36d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -730,6 +730,7 @@ void Split::showSearch()
{
SearchPopup *popup = new SearchPopup();
popup->setAttribute(Qt::WA_DeleteOnClose);
popup->setChannel(this->getChannel());
popup->show();
}