# # # patch "src/model/Inventory.cpp" # from [7e768040639f70c5e29367a639f98c4f0a605cf1] # to [a7f7538449a4d0aae36470ad11b53c76a182ce9e] # ============================================================ --- src/model/Inventory.cpp 7e768040639f70c5e29367a639f98c4f0a605cf1 +++ src/model/Inventory.cpp a7f7538449a4d0aae36470ad11b53c76a182ce9e @@ -100,6 +100,9 @@ void Inventory::fetchMore(const QModelIn // restricting to single files makes no sense for us here either if (invitem->getFSType() != InventoryItem::Directory) return; + // again, if this item is already expanded, don't expand it again + if (invitem->isExpanded()) return; + readInventory(invitem->getPath()); }