mirror of
https://github.com/cookiengineer/audacity
synced 2025-06-17 16:40:07 +02:00
Change slider mouseover tooltips wordings (was "Level") to match the drag tooltips ("Volume").
This commit is contained in:
parent
f67170df5f
commit
d99e15e193
@ -385,19 +385,19 @@ void MixerToolBar::SetToolTips()
|
|||||||
{
|
{
|
||||||
#if wxUSE_TOOLTIPS
|
#if wxUSE_TOOLTIPS
|
||||||
if (mInputSlider->IsEnabled()) {
|
if (mInputSlider->IsEnabled()) {
|
||||||
mInputSlider->SetToolTip(_("Input Level Slider"));
|
mInputSlider->SetToolTip(_("Input Volume Slider"));
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
mInputSlider->SetToolTip(
|
mInputSlider->SetToolTip(
|
||||||
_("Cannot control input level; use system mixer."));
|
_("Cannot control input volume; use system mixer."));
|
||||||
}
|
}
|
||||||
|
|
||||||
if (mOutputSlider->IsEnabled()) {
|
if (mOutputSlider->IsEnabled()) {
|
||||||
mOutputSlider->SetToolTip(_("Output Level Slider"));
|
mOutputSlider->SetToolTip(_("Output Volume Slider"));
|
||||||
}
|
}
|
||||||
else {
|
else {
|
||||||
mOutputSlider->SetToolTip(
|
mOutputSlider->SetToolTip(
|
||||||
_("Cannot control output level; use system mixer."));
|
_("Cannot control output volume; use system mixer."));
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user