From 5b804821fbcc6f406bb157863642e0d7d5fd8681 Mon Sep 17 00:00:00 2001 From: Oskar Wallgren Date: Wed, 27 Jan 2016 08:39:33 +0100 Subject: [PATCH] Fix colour of selected beat notes in Piano Roll --- src/gui/editors/PianoRoll.cpp | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/src/gui/editors/PianoRoll.cpp b/src/gui/editors/PianoRoll.cpp index a1e25b60d..134065e5c 100644 --- a/src/gui/editors/PianoRoll.cpp +++ b/src/gui/editors/PianoRoll.cpp @@ -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 ); }