146 @param option style options (QStyleOptionGraphicsItem) |
146 @param option style options (QStyleOptionGraphicsItem) |
147 @param widget optional reference to the widget painted on (QWidget) |
147 @param widget optional reference to the widget painted on (QWidget) |
148 """ |
148 """ |
149 pen = self.pen() |
149 pen = self.pen() |
150 if ( |
150 if ( |
151 (option.state & QStyle.State_Selected) == |
151 (option.state & QStyle.StateFlag.State_Selected) == |
152 QStyle.State(QStyle.State_Selected) |
152 QStyle.State(QStyle.StateFlag.State_Selected) |
153 ): |
153 ): |
154 pen.setWidth(2) |
154 pen.setWidth(2) |
155 else: |
155 else: |
156 pen.setWidth(1) |
156 pen.setWidth(1) |
157 |
157 |