mirror of
https://github.com/cookiengineer/audacity
synced 2025-05-04 09:39:42 +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:
parent
e5540c6118
commit
b2d9f7c396
@ -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
|
||||
|
Loading…
x
Reference in New Issue
Block a user