fix expand button

This commit is contained in:
Jakub Trllo 2024-09-13 18:56:37 +02:00
parent 882d61f2f3
commit 2fd99f232a

View file

@ -466,10 +466,10 @@ class ExpandBtnLabel(QtWidgets.QLabel):
self._collapsed = True
def _create_collapsed_pixmap(self):
return QtGui.QPixmap(self.branch_open_path)
return QtGui.QPixmap(self.branch_closed_path)
def _create_expanded_pixmap(self):
return QtGui.QPixmap(self.branch_closed_path)
return QtGui.QPixmap(self.branch_open_path)
@property
def collapsed(self):