X-Git-Url: http://git.onelab.eu/?p=sface.git;a=blobdiff_plain;f=sface%2Fscreens%2Fmainscreen.py;h=c573aea863a4f943581b9fe44ce050780514fac4;hp=13140de870e712a8cfb69e0e842b9d881519fa00;hb=b9b34de9896478db27e37b1d7bb9cebb14f2c2c7;hpb=5d9d4374df91f919e5c744906186b2769b6d09ae diff --git a/sface/screens/mainscreen.py b/sface/screens/mainscreen.py index 13140de..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)) @@ -391,7 +391,7 @@ class SliceWidget(QWidget): all_nodes = rspec.get_node_list(network) sliver_nodes = rspec.get_sliver_list(network) - available_nodes = filter(lambda x:x not in sliver_nodes, all_nodes) + available_nodes = [ node for node in all_nodes if node not in sliver_nodes ] networkItem = QStandardItem(QString(network)) msg = "%s Nodes\t%s Selected" % (len(all_nodes), len(sliver_nodes))