diff options
-rw-r--r-- | module/gui/Accounts.py | 7 | ||||
-rwxr-xr-x | pyLoadGui.py | 1 |
2 files changed, 6 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 diff --git a/pyLoadGui.py b/pyLoadGui.py index 0ac74cda5..0ee865dfe 100755 --- a/pyLoadGui.py +++ b/pyLoadGui.py @@ -674,6 +674,7 @@ class main(QObject): self.mainWindow.tabs["accounts"]["view"].model().reloadData(force) def slotQuit(self): + self.tray.hide() self.quitInternal() self.app.quit() |