diff --git a/include/track.h b/include/track.h index e482fd8a3..aa57b4798 100644 --- a/include/track.h +++ b/include/track.h @@ -67,7 +67,7 @@ typedef QWidget trackSettingsWidget; const int DEFAULT_SETTINGS_WIDGET_WIDTH = 224; -const int TRACK_OP_WIDTH = 70; +const int TRACK_OP_WIDTH = 78; const int TCO_BORDER_WIDTH = 1; diff --git a/src/core/track.cpp b/src/core/track.cpp index 80c39367c..06689662a 100644 --- a/src/core/track.cpp +++ b/src/core/track.cpp @@ -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" ) );