From df6c9b3740e01134318cffb83bbc7930653d6806 Mon Sep 17 00:00:00 2001 From: hsoft Date: Sat, 3 Oct 2009 10:48:08 +0000 Subject: [PATCH] Fixed Results model, which still had invalid code since the latest qtlib tree_model changes. --HG-- extra : convert_revision : svn%3Ac306627e-7827-47d3-bdf0-9a457c9553a1/trunk%40171 --- base/qt/results_model.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/base/qt/results_model.py b/base/qt/results_model.py index 6b020fd5..d29f73bc 100644 --- a/base/qt/results_model.py +++ b/base/qt/results_model.py @@ -120,7 +120,7 @@ class ResultsModel(TreeModel): assert node.dupe is dupe return self.createIndex(row, 0, node) subrow = group.dupes.index(dupe) - subnode = node.children[subrow] + subnode = node.subnodes[subrow] assert subnode.dupe is dupe return self.createIndex(subrow, 0, subnode) except ValueError: # the dupe is not there anymore