Skip to content

Commit

Permalink
Added Midi out note / Midi out channel tool tips
Browse files Browse the repository at this point in the history
  • Loading branch information
mauser committed Oct 4, 2015
1 parent 4be21ea commit 5c12ba3
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/gui/src/InstrumentEditor/InstrumentEditor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,8 @@ InstrumentEditor::InstrumentEditor( QWidget* pParent )

m_pMidiOutChannelLCD = new LCDDisplay( m_pInstrumentProp, LCDDigit::SMALL_BLUE, 4 );
m_pMidiOutChannelLCD->move( 67, 261 );
m_pMidiOutChannelLCD->setToolTip(QString(trUtf8("Midi out channel")));


m_pAddMidiOutChannelBtn = new Button(
m_pInstrumentProp,
Expand All @@ -130,6 +132,7 @@ InstrumentEditor::InstrumentEditor( QWidget* pParent )
m_pDelMidiOutChannelBtn->move( 109, 269 );
connect( m_pDelMidiOutChannelBtn, SIGNAL( clicked(Button*) ), this, SLOT( midiOutChannelBtnClicked(Button*) ) );


///
m_pMidiOutNoteLCD = new LCDDisplay( m_pInstrumentProp, LCDDigit::SMALL_BLUE, 4 );
m_pMidiOutNoteLCD->move( 160, 261 );
Expand All @@ -141,6 +144,8 @@ InstrumentEditor::InstrumentEditor( QWidget* pParent )
"/lcd/LCDSpinBox_up_over.png",
QSize( 16, 8 )
);
m_pMidiOutNoteLCD->setToolTip(QString(trUtf8("Midi out note")));


m_pAddMidiOutNoteBtn->move( 202, 260 );
connect( m_pAddMidiOutNoteBtn, SIGNAL( clicked(Button*) ), this, SLOT( midiOutNoteBtnClicked(Button*) ) );
Expand Down

0 comments on commit 5c12ba3

Please sign in to comment.