Fix colour of selected beat notes in Piano Roll

This commit is contained in:
Oskar Wallgren
2016-01-27 08:39:33 +01:00
parent 77b98117e6
commit 5b804821fb

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 );
}