From 0bc96c383141e64ae9a0b68e77d1f09d77c1b2bc Mon Sep 17 00:00:00 2001
From: Paul Licameli <paul.licameli@audacityteam.org>
Date: Mon, 26 Mar 2018 01:05:04 -0400
Subject: [PATCH] Oops, Internal() was needed here, not Translation()

---
 src/ShuttleGui.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/ShuttleGui.cpp b/src/ShuttleGui.cpp
index d29ff278b..b8d815d51 100644
--- a/src/ShuttleGui.cpp
+++ b/src/ShuttleGui.cpp
@@ -1868,7 +1868,7 @@ wxChoice *ShuttleGuiBase::TieChoice(
       internalChoices.push_back( ident.Internal() );
    }
    return TieChoice(
-      Prompt, enumSetting.Key(), enumSetting.Default().Translation(),
+      Prompt, enumSetting.Key(), enumSetting.Default().Internal(),
          visibleChoices, internalChoices );
 }