Fix #305, adding an indicator to tree view root element

Signed-off-by: TheJackiMonster <thejackimonster@gmail.com>
This commit is contained in:
TheJackiMonster 2023-02-13 21:40:52 +01:00
parent 6ea209e523
commit 9203e0cc83
No known key found for this signature in database
GPG Key ID: D850A5F772E880F9
1 changed files with 1 additions and 1 deletions

View File

@ -701,7 +701,7 @@ class Ui_MainWindow(object):
self.treeWorld.setDefaultDropAction(QtCore.Qt.MoveAction)
self.treeWorld.setSelectionMode(QtWidgets.QAbstractItemView.ExtendedSelection)
self.treeWorld.setIndentation(15)
self.treeWorld.setRootIsDecorated(False)
self.treeWorld.setRootIsDecorated(True)
self.treeWorld.setObjectName("treeWorld")
self.treeWorld.header().setVisible(False)
self.treeWorld.header().setDefaultSectionSize(35)