From 6f67de249501eed6a43095d930ab6706d016a072 Mon Sep 17 00:00:00 2001 From: Tobias Doerffel Date: Thu, 18 Sep 2008 22:15:41 +0000 Subject: [PATCH] fixed tooltip of mute button git-svn-id: https://lmms.svn.sf.net/svnroot/lmms/trunk/lmms@1631 0778d3d1-df1d-0410-868b-ea421aaaa00d --- src/gui/fx_mixer_view.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/gui/fx_mixer_view.cpp b/src/gui/fx_mixer_view.cpp index 971a359b9..e120b87fc 100644 --- a/src/gui/fx_mixer_view.cpp +++ b/src/gui/fx_mixer_view.cpp @@ -185,7 +185,7 @@ fxMixerView::fxMixerView() : embed::getIconPixmap( "led_green" ) ); cv->m_muteBtn->setCheckable( TRUE ); cv->m_muteBtn->move( 9, cv->m_fader->y()-16); - toolTip::add( cv->m_muteBtn, tr( "Mute this track" ) ); + toolTip::add( cv->m_muteBtn, tr( "Mute this FX channel" ) ); cv->m_rackView = new effectRackView( &m->m_fxChannels[i]->m_fxChain, this );