1
0
mirror of https://github.com/cookiengineer/audacity synced 2025-06-16 16:10:06 +02:00

Oops, Internal() was needed here, not Translation()

This commit is contained in:
Paul Licameli 2018-03-26 01:05:04 -04:00
parent afe09bb172
commit 0bc96c3831

View File

@ -1868,7 +1868,7 @@ wxChoice *ShuttleGuiBase::TieChoice(
internalChoices.push_back( ident.Internal() ); internalChoices.push_back( ident.Internal() );
} }
return TieChoice( return TieChoice(
Prompt, enumSetting.Key(), enumSetting.Default().Translation(), Prompt, enumSetting.Key(), enumSetting.Default().Internal(),
visibleChoices, internalChoices ); visibleChoices, internalChoices );
} }