From 120f92904794309ab2785e267f0d43b6f882afd5 Mon Sep 17 00:00:00 2001 From: Tobias Doerffel Date: Wed, 20 Aug 2008 11:27:11 +0000 Subject: [PATCH] minor UI improvements git-svn-id: https://lmms.svn.sf.net/svnroot/lmms/trunk/lmms@1448 0778d3d1-df1d-0410-868b-ea421aaaa00d --- src/gui/widgets/instrument_midi_io_view.cpp | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) diff --git a/src/gui/widgets/instrument_midi_io_view.cpp b/src/gui/widgets/instrument_midi_io_view.cpp index 0d6177a51..56998cc31 100644 --- a/src/gui/widgets/instrument_midi_io_view.cpp +++ b/src/gui/widgets/instrument_midi_io_view.cpp @@ -47,7 +47,8 @@ instrumentMidiIOView::instrumentMidiIOView( QWidget * _parent ) : m_rpBtn( NULL ), m_wpBtn( NULL ) { - m_setupTabWidget = new tabWidget( tr( "MIDI-SETUP FOR THIS CHANNEL" ), + m_setupTabWidget = new tabWidget( + tr( "MIDI SETUP FOR THIS INSTRUMENT" ), this ); m_setupTabWidget->setGeometry( 4, 5, 238, 200 ); @@ -73,10 +74,9 @@ instrumentMidiIOView::instrumentMidiIOView( QWidget * _parent ) : m_inputChannelSpinBox, SLOT( setEnabled( bool ) ) ); - m_defaultVelocityInCheckBox = new ledCheckBox( - tr( "Default velocity for all input-events" ), - m_setupTabWidget ); - m_defaultVelocityInCheckBox->move( 28, 84 ); + m_defaultVelocityInCheckBox = new ledCheckBox( tr( "Equal velocity" ), + m_setupTabWidget ); + m_defaultVelocityInCheckBox->move( 28, 86 ); m_sendCheckBox = new ledCheckBox( tr( "Send MIDI-events" ), @@ -86,13 +86,12 @@ instrumentMidiIOView::instrumentMidiIOView( QWidget * _parent ) : m_outputChannelSpinBox, SLOT( setEnabled( bool ) ) ); - m_defaultVelocityOutCheckBox = new ledCheckBox( - tr( "Default velocity for all output-events" ), - m_setupTabWidget ); - m_defaultVelocityOutCheckBox->move( 28, 164 ); + m_defaultVelocityOutCheckBox = new ledCheckBox( tr( "Equal velocity" ), + m_setupTabWidget ); + m_defaultVelocityOutCheckBox->move( 28, 166 ); - if( !engine::getMixer()->getMIDIClient()->isRaw() ) + if( !engine::getMixer()->getMidiClient()->isRaw() ) { m_rpBtn = new QToolButton( m_setupTabWidget ); m_rpBtn->setText( tr( "MIDI-devices to receive "