Merge pull request #2520 from zonkmachine/beatNoteColour
Fix colour of selected beat notes in Piano Roll
This commit is contained in:
@@ -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 );
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user