From d2b4fcfcf6218d76a7657dc7960cb1af94065f78 Mon Sep 17 00:00:00 2001
From: Oliver Bock <oliver.bock@aei.mpg.de>
Date: Wed, 28 Jan 2009 20:04:59 +0100
Subject: [PATCH] Changed scope color to yellow

* Looks much nicer in conjunction with 3D part
* Matches cones
---
 src/pulsescopewidget.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/pulsescopewidget.cpp b/src/pulsescopewidget.cpp
index f87fd93..41001b3 100644
--- a/src/pulsescopewidget.cpp
+++ b/src/pulsescopewidget.cpp
@@ -70,7 +70,7 @@ void PulseScopeWidget::drawCurve(const QVector<float>& vector)
 	for(int i = 0; i < m_scopeSizeH; ++i) {
 		pulsePath.lineTo(i,m_data[i]);
 	}
-	m_scene.addPath(pulsePath, QPen(Qt::green));
+	m_scene.addPath(pulsePath, QPen(Qt::yellow));
 
 	if(m_marker.scene() == 0) {
 		m_marker.setLine(0.0, 0.0, 0.0, m_scopeSizeV);
-- 
GitLab