From b9b34de9896478db27e37b1d7bb9cebb14f2c2c7 Mon Sep 17 00:00:00 2001 From: Andy Bavier Date: Tue, 24 May 2011 11:35:50 -0400 Subject: [PATCH] Specify "cyan" as RGB value SFA-40 On Leopard, QColor("cyan") causes an error. Specify the color cyan as RGB values instead. --- sface/screens/mainscreen.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sface/screens/mainscreen.py b/sface/screens/mainscreen.py index f1015b4..c573aea 100644 --- a/sface/screens/mainscreen.py +++ b/sface/screens/mainscreen.py @@ -160,7 +160,7 @@ class NodeNameDelegate(QStyledItemDelegate): if itemType(index) == "node": if status_data == node_status['in']: # already in the slice - painter.fillPath(path, QColor("cyan")) + painter.fillPath(path, QColor.fromRgb(0, 250, 250)) painter.setPen(QColor.fromRgb(0, 0, 0)) painter.drawText(option.rect, 0, QString(data)) @@ -180,7 +180,7 @@ class NodeNameDelegate(QStyledItemDelegate): else: if status_data == tag_status['in']: # already in the slice - painter.fillPath(path, QColor("cyan")) + painter.fillPath(path, QColor.fromRgb(0, 250, 250)) painter.setPen(QColor.fromRgb(0, 0, 0)) painter.drawText(option.rect, 0, QString(data)) -- 2.43.0