diff options
Diffstat (limited to 'module/gui/Accounts.py')
-rw-r--r-- | module/gui/Accounts.py | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/module/gui/Accounts.py b/module/gui/Accounts.py index 23751d79f..a4a047920 100644 --- a/module/gui/Accounts.py +++ b/module/gui/Accounts.py @@ -100,7 +100,10 @@ class AccountModel(QAbstractItemModel): return self.cols def hasChildren(self, parent=QModelIndex()): - return False + if parent == QModelIndex(): + return True + else: + return False def canFetchMore(self, parent): return False @@ -144,7 +147,7 @@ class AccountDelegate(QItemDelegate): def __init__(self, parent, model): QItemDelegate.__init__(self, parent) self.model = model - + def paint(self, painter, option, index): if not index.isValid(): return |