166 @param option style options (QStyleOptionGraphicsItem) |
166 @param option style options (QStyleOptionGraphicsItem) |
167 @param widget optional reference to the widget painted on (QWidget) |
167 @param widget optional reference to the widget painted on (QWidget) |
168 """ |
168 """ |
169 pen = self.pen() |
169 pen = self.pen() |
170 if ( |
170 if ( |
171 (option.state & QStyle.State_Selected) == |
171 (option.state & QStyle.StateFlag.State_Selected) == |
172 QStyle.State(QStyle.State_Selected) |
172 QStyle.State(QStyle.StateFlag.State_Selected) |
173 ): |
173 ): |
174 pen.setWidth(2) |
174 pen.setWidth(2) |
175 else: |
175 else: |
176 pen.setWidth(1) |
176 pen.setWidth(1) |
177 |
177 |