From: Jens Steinhauser Date: Mon, 5 Oct 2015 11:00:16 +0000 (+0200) Subject: Reorder the trace colors so they are easier to distinguish. X-Git-Url: https://sigrok.org/gitweb/?a=commitdiff_plain;h=86862cb44ace09720744eee2e80ae50c174e903f;hp=6c05c913c3d0140b1431b832e4a550665e659bf7;p=sigrok-meter.git Reorder the trace colors so they are easier to distinguish. --- diff --git a/datamodel.py b/datamodel.py index 6ce9158..5ad084c 100644 --- a/datamodel.py +++ b/datamodel.py @@ -74,11 +74,11 @@ class MeasurementDataModel(QtGui.QStandardItemModel): def _make_colorgen(self): cols = [ QtGui.QColor(0x8F, 0x52, 0x02), # brown + QtGui.QColor(0x73, 0xD2, 0x16), # green QtGui.QColor(0xCC, 0x00, 0x00), # red + QtGui.QColor(0x34, 0x65, 0xA4), # blue QtGui.QColor(0xF5, 0x79, 0x00), # orange QtGui.QColor(0xED, 0xD4, 0x00), # yellow - QtGui.QColor(0x73, 0xD2, 0x16), # green - QtGui.QColor(0x34, 0x65, 0xA4), # blue QtGui.QColor(0x75, 0x50, 0x7B) # violet ]