mirror of
https://github.com/d47081/qBittorrent.git
synced 2025-01-10 14:57:52 +00:00
- Fix possible crash in torrent properties
This commit is contained in:
parent
094d979ce6
commit
69cb8d1398
@ -362,7 +362,12 @@ void PropertiesWidget::loadDynamicData() {
|
|||||||
}
|
}
|
||||||
if(stackedProperties->currentIndex() == FILES_TAB) {
|
if(stackedProperties->currentIndex() == FILES_TAB) {
|
||||||
// Files progress
|
// Files progress
|
||||||
if(h.has_metadata()) {
|
if(h.is_valid() && h.has_metadata()) {
|
||||||
|
if(PropListModel->rowCount() == 0) {
|
||||||
|
PropListModel->setupModelData(h.get_torrent_info());
|
||||||
|
// Expand first item if possible
|
||||||
|
filesList->expand(PropListModel->index(0, 0));
|
||||||
|
}
|
||||||
std::vector<size_type> fp;
|
std::vector<size_type> fp;
|
||||||
h.file_progress(fp);
|
h.file_progress(fp);
|
||||||
PropListModel->updateFilesPriorities(h.file_priorities());
|
PropListModel->updateFilesPriorities(h.file_priorities());
|
||||||
|
Loading…
Reference in New Issue
Block a user