Fix crash when the selected torrent disappears from the transfer list. Closes #1661

This commit is contained in:
sledgehammer999 2014-05-15 20:58:59 +03:00
parent 6d961cdcc5
commit c1831a4e97

View file

@ -461,6 +461,10 @@ void PropertiesWidget::displayFilesListMenu(const QPoint&) {
}
// Call menu
const QAction *act = myFilesLlistMenu.exec(QCursor::pos());
// The selected torrent might have dissapeared during exec()
// from the current view thus leaving invalid indices.
if (!(selectedRows.begin()->isValid()))
return;
if (act) {
if (act == actRename) {
renameSelectedFile();