Commit 3a9ba6a5 authored by Dan Pascu's avatar Dan Pascu

Adjusted selected group background colors for better visibility

parent ac074618
...@@ -1173,28 +1173,27 @@ class GroupWidget(base_class, ui_class): ...@@ -1173,28 +1173,27 @@ class GroupWidget(base_class, ui_class):
def paintEvent(self, event): def paintEvent(self, event):
painter = QPainter(self) painter = QPainter(self)
rect = self.rect()
background = QLinearGradient(0, 0, self.width(), self.height()) background = QLinearGradient(0, 0, self.width(), self.height())
if self.selected: if self.selected:
background.setColorAt(0.0, QColor('#dadada')) background.setColorAt(0.0, QColor('#cacaca'))
background.setColorAt(1.0, QColor('#c4c4c4')) background.setColorAt(1.0, QColor('#b4b4b4'))
upper_color = QColor('#f0f0f0')
lower_color = QColor('#a4a4a4')
foreground = QColor('#ffffff') foreground = QColor('#ffffff')
else: else:
background.setColorAt(0.0, QColor('#eeeeee')) background.setColorAt(0.0, QColor('#eeeeee'))
background.setColorAt(1.0, QColor('#d8d8d8')) background.setColorAt(1.0, QColor('#d8d8d8'))
upper_color = QColor('#f8f8f8')
lower_color = QColor('#c4c4c4')
foreground = QColor('#888888') foreground = QColor('#888888')
rect = self.rect()
painter.fillRect(rect, QBrush(background)) painter.fillRect(rect, QBrush(background))
painter.setPen(upper_color)
painter.setPen(QColor('#f8f8f8'))
painter.drawLine(rect.topLeft(), rect.topRight()) painter.drawLine(rect.topLeft(), rect.topRight())
#painter.drawLine(option.rect.topLeft(), option.rect.bottomLeft()) painter.setPen(lower_color)
painter.setPen(QColor('#b8b8b8'))
painter.drawLine(rect.bottomLeft(), rect.bottomRight()) painter.drawLine(rect.bottomLeft(), rect.bottomRight())
#painter.drawLine(option.rect.topRight(), option.rect.bottomRight())
painter.setRenderHint(QPainter.Antialiasing, True) painter.setRenderHint(QPainter.Antialiasing, True)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment