waveshaper redesign (#3097)

* waveshaper redesign

* Correcting for inconsistency with overall theme

* fix knobs and background

* Changed buttons with more consistent font
This commit is contained in:
m-xbutterfly
2016-12-10 01:27:05 -05:00
committed by Rebecca DeField
parent 3ee60b24bd
commit 33f5821b63
12 changed files with 15 additions and 15 deletions

View File

@@ -385,7 +385,7 @@ void Graph::paintEvent( QPaintEvent * )
if( m_mouseDown )
{
QPoint cursor = mapFromGlobal( QCursor::pos() );
p.setPen( QColor( 0xAA, 0xFF, 0x00, 0x70 ) );
p.setPen( QColor( 0x70, 0x7C, 0x91 ) );
p.drawLine( 2, cursor.y(), width()-2, cursor.y() );
p.drawLine( cursor.x(), 2, cursor.x(), height()-2 );
}