re-arranged mute- and solo-buttons

git-svn-id: https://lmms.svn.sf.net/svnroot/lmms/trunk/lmms@1069 0778d3d1-df1d-0410-868b-ea421aaaa00d
This commit is contained in:
Tobias Doerffel
2008-06-05 06:30:50 +00:00
parent 0da68d891d
commit bfcbb50eab
2 changed files with 3 additions and 3 deletions

View File

@@ -1088,7 +1088,7 @@ trackOperationsWidget::trackOperationsWidget( trackView * _parent ) :
m_muteBtn->setActiveGraphic( embed::getIconPixmap( "led_off" ) );
m_muteBtn->setInactiveGraphic( embed::getIconPixmap( "led_green" ) );
m_muteBtn->setCheckable( TRUE );
m_muteBtn->move( 44, 2 );
m_muteBtn->move( 46, 8 );
m_muteBtn->show();
m_muteBtn->setWhatsThis(
tr( "With this switch you can either mute this track or mute "
@@ -1105,7 +1105,7 @@ trackOperationsWidget::trackOperationsWidget( trackView * _parent ) :
m_soloBtn->setActiveGraphic( embed::getIconPixmap( "led_red" ) );
m_soloBtn->setInactiveGraphic( embed::getIconPixmap( "led_off" ) );
m_soloBtn->setCheckable( TRUE );
m_soloBtn->move( 44, 18 );
m_soloBtn->move( 62, 8 );
m_soloBtn->show();
toolTip::add( m_soloBtn, tr( "Solo" ) );