1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-05-04 17:49:45 +02:00

Bug 2305 - The Gain, Play-at-Speed and Mixer Board sliders do not display the numeric value in the tooltip when sliding

This commit is contained in:
James Crook 2020-02-17 21:54:42 +00:00
parent e5540c6118
commit b2d9f7c396

View File

@ -948,7 +948,7 @@ TranslatableString LWSlider::GetTip(float value) const
case DB_SLIDER:
/* i18n-hint dB abbreviates decibels */
XO("%+.1f dB").Format( value );
val = XO("%+.1f dB").Format( value );
break;
case PAN_SLIDER:
@ -970,7 +970,7 @@ TranslatableString LWSlider::GetTip(float value) const
case SPEED_SLIDER:
/* i18n-hint: "x" suggests a multiplicative factor */
XO("%.2fx").Format( value );
val = XO("%.2fx").Format( value );
break;
#ifdef EXPERIMENTAL_MIDI_OUT