From a81026669dd7c31c015ce953f439c35da4728c7c Mon Sep 17 00:00:00 2001 From: =?utf8?q?Bar=C4=B1=C5=9F=20Metin?= Date: Mon, 13 Sep 2010 12:22:05 +0200 Subject: [PATCH 1/1] cosmetic --- sface/screens/mainscreen.py | 2 ++ 1 file changed, 2 insertions(+) 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() -- 2.43.0