From: Andy Bavier Date: Tue, 24 May 2011 15:35:50 +0000 (-0400) Subject: Specify "cyan" as RGB value X-Git-Tag: sface-0.1-12~5 X-Git-Url: http://git.onelab.eu/?p=sface.git;a=commitdiff_plain;h=b9b34de9896478db27e37b1d7bb9cebb14f2c2c7;ds=sidebyside Specify "cyan" as RGB value SFA-40 On Leopard, QColor("cyan") causes an error. Specify the color cyan as RGB values instead. --- 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))