mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-08-19 21:03:30 -07:00
- Fixed segfault that would happen when unfiltering files in torrent addition dialog (closes #163379)
This commit is contained in:
parent
be34bed61a
commit
2691677650
1 changed files with 2 additions and 1 deletions
|
@ -181,7 +181,8 @@ class PropListDelegate: public QItemDelegate {
|
||||||
// } else {
|
// } else {
|
||||||
model->setData(index, QVariant(HIGH));
|
model->setData(index, QVariant(HIGH));
|
||||||
model->setData(index, QVariant(NORMAL));
|
model->setData(index, QVariant(NORMAL));
|
||||||
*filteredFilesChanged = true;
|
if(filteredFilesChanged != 0)
|
||||||
|
*filteredFilesChanged = true;
|
||||||
// }
|
// }
|
||||||
break;
|
break;
|
||||||
case 2:
|
case 2:
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue