Bug fix: stop first run segfault
This commit is contained in:
parent
35ea2e0c96
commit
5258b7368a
1 changed files with 16 additions and 2 deletions
|
@ -716,6 +716,20 @@ class chumArea(RightClickTree):
|
||||||
def addItem(self, chumLabel):
|
def addItem(self, chumLabel):
|
||||||
if hasattr(self, 'groups'):
|
if hasattr(self, 'groups'):
|
||||||
if chumLabel.chum.group not in self.groups:
|
if chumLabel.chum.group not in self.groups:
|
||||||
|
if self.topLevelItemCount() == 0:
|
||||||
|
child_1 = QtGui.QTreeWidgetItem(["Chums"])
|
||||||
|
self.addTopLevelItem(child_1)
|
||||||
|
if self.mainwindow.config.openDefaultGroup():
|
||||||
|
child_1.setExpanded(True)
|
||||||
|
else:
|
||||||
|
text = str(self.topLevelItem(0).text(0))
|
||||||
|
if text.find(" ") != -1:
|
||||||
|
text = text[0:text.rfind(" ")]
|
||||||
|
if text != "Chums":
|
||||||
|
child_1 = QtGui.QTreeWidgetItem(["Chums"])
|
||||||
|
self.insertTopLevelItems(0, [child_1])
|
||||||
|
if self.mainwindow.config.openDefaultGroup():
|
||||||
|
child_1.setExpanded(True)
|
||||||
self.topLevelItem(0).addChild(chumLabel)
|
self.topLevelItem(0).addChild(chumLabel)
|
||||||
self.topLevelItem(0).sortChildren(0, QtCore.Qt.AscendingOrder)
|
self.topLevelItem(0).sortChildren(0, QtCore.Qt.AscendingOrder)
|
||||||
else:
|
else:
|
||||||
|
|
Loading…
Reference in a new issue