Merge pull request #2520 from zonkmachine/beatNoteColour

Fix colour of selected beat notes in Piano Roll
This commit is contained in:
Oskar Wallgren
2016-01-28 18:05:59 +01:00

View File

@@ -785,12 +785,7 @@ void PianoRoll::drawNoteRect(QPainter & p, int x, int y,
QColor col = QColor( noteCol );
if( n->length() < 0 )
{
//step note
col.setRgb( 0, 255, 0 );
}
else if( n->selected() )
if( n->selected() )
{
col.setRgb( 0x00, 0x40, 0xC0 );
}