Slight fix to the wavegraph: grow height by 1 px to make default state look better

This commit is contained in:
Vesa
2014-02-14 19:48:29 +02:00
parent 9265913b73
commit 45625d2a34
3 changed files with 2 additions and 2 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 65 KiB

After

Width:  |  Height:  |  Size: 65 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 40 KiB

After

Width:  |  Height:  |  Size: 40 KiB

View File

@@ -46,7 +46,7 @@ waveShaperControlDialog::waveShaperControlDialog(
setPalette( pal );
setFixedSize( 224, 300 );
graph * waveGraph = new graph( this, graph::LinearNonCyclicStyle, 204, 204 );
graph * waveGraph = new graph( this, graph::LinearNonCyclicStyle, 204, 205 );
waveGraph -> move( 10, 32 );
waveGraph -> setModel( &_controls -> m_wavegraphModel );
waveGraph -> setAutoFillBackground( true );
@@ -55,7 +55,7 @@ waveShaperControlDialog::waveShaperControlDialog(
PLUGIN_NAME::getIconPixmap("wavegraph") );
waveGraph->setPalette( pal );
waveGraph->setGraphColor( QColor( 170, 255, 255 ) );
waveGraph -> setMaximumSize( 204, 204 );
waveGraph -> setMaximumSize( 204, 205 );
knob * inputKnob = new knob( knobBright_26, this);
inputKnob -> move( 14, 251 );