summaryrefslogtreecommitdiff
path: root/noncore
authorwaspe <waspe>2003-11-17 20:33:37 (UTC)
committer waspe <waspe>2003-11-17 20:33:37 (UTC)
commitede1a10411dd859c6473aadbc7fa54bf2419380d (patch) (unidiff)
treed8561730a0932e57a25a15441a579cdaae1919fd /noncore
parent9ea83d1fc66171dbbcf8d1d435eedbb75c346935 (diff)
downloadopie-ede1a10411dd859c6473aadbc7fa54bf2419380d.zip
opie-ede1a10411dd859c6473aadbc7fa54bf2419380d.tar.gz
opie-ede1a10411dd859c6473aadbc7fa54bf2419380d.tar.bz2
changed color of notes
Diffstat (limited to 'noncore') (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/multimedia/tonleiter/fretboard.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/noncore/multimedia/tonleiter/fretboard.cpp b/noncore/multimedia/tonleiter/fretboard.cpp
index d8e48d3..57806be 100644
--- a/noncore/multimedia/tonleiter/fretboard.cpp
+++ b/noncore/multimedia/tonleiter/fretboard.cpp
@@ -144,13 +144,13 @@ void FretBoard::paintScale(QPainter* p)
144 p->setBrush(dotcolor); 144 p->setBrush(dotcolor);
145 145
146 p->drawEllipse(x-dotsize/2,y-dotsize/2,dotsize,dotsize); 146 p->drawEllipse(x-dotsize/2,y-dotsize/2,dotsize,dotsize);
147 147
148 if(data->isDrawNames()) 148 if(data->isDrawNames())
149 { 149 {
150 p->setPen(QColor(0,255,0)); 150 p->setPen(QColor(255,155,0));
151 p->drawText(x-dotsize/2,y-dotsize/2,Note::getNameOfNote(note)); 151 p->drawText(x-dotsize/2,y-dotsize/2,Note::getNameOfNote(note));
152 } 152 }
153 153
154 } 154 }
155 } 155 }
156 } 156 }