From: Barış Metin Date: Mon, 13 Sep 2010 10:22:05 +0000 (+0200) Subject: cosmetic X-Git-Tag: sface-0.1-1~53 X-Git-Url: http://git.onelab.eu/?p=sface.git;a=commitdiff_plain;h=a81026669dd7c31c015ce953f439c35da4728c7c cosmetic --- diff --git a/sface/screens/mainscreen.py b/sface/screens/mainscreen.py index 160883b..2d94080 100644 --- a/sface/screens/mainscreen.py +++ b/sface/screens/mainscreen.py @@ -61,12 +61,14 @@ class NodeNameDelegate(QStyledItemDelegate): painter.fillPath(path, QColor.fromRgb(0, 250, 0)) painter.setPen(QColor.fromRgb(0, 0, 0)) painter.drawText(option.rect, 0, QString(data)) + painter.drawRect(x + w + 10, y + 3, 10, 10) painter.fillRect(x + w + 10, y + 3, 10, 10, QColor.fromRgb(0, 250, 0)) elif select_data == "remove": # removed from the slice painter.fillPath(path, QColor.fromRgb(250, 0, 0)) painter.setPen(QColor.fromRgb(0, 0, 0)) painter.drawText(option.rect, 0, QString(data)) + painter.drawRect(x + w + 10, y + 3, 10, 10) painter.fillRect(x + w + 10, y + 3, 10, 10, QColor.fromRgb(250, 0, 0)) painter.restore()