mirror of
https://github.com/d47081/qBittorrent.git
synced 2025-01-11 15:27:54 +00:00
Capture pointer by value
This commit is contained in:
parent
48e7191ef7
commit
62b0d25140
@ -640,7 +640,7 @@ void PropertiesWidget::displayFilesListMenu(const QPoint &)
|
|||||||
// The selected torrent might have disappeared during exec()
|
// The selected torrent might have disappeared during exec()
|
||||||
// so we just close menu when an appropriate model is reset
|
// so we just close menu when an appropriate model is reset
|
||||||
connect(m_ui->filesList->model(), &QAbstractItemModel::modelAboutToBeReset
|
connect(m_ui->filesList->model(), &QAbstractItemModel::modelAboutToBeReset
|
||||||
, menu, [&menu]()
|
, menu, [menu]()
|
||||||
{
|
{
|
||||||
menu->setActiveAction(nullptr);
|
menu->setActiveAction(nullptr);
|
||||||
menu->close();
|
menu->close();
|
||||||
|
Loading…
Reference in New Issue
Block a user