From 2002cd91dd0ab11835cec2d42984d9035df4fd59 Mon Sep 17 00:00:00 2001 From: Leland Lucius Date: Sun, 7 Feb 2021 20:49:11 -0600 Subject: [PATCH] Prevent "Could not transfer data..." message in Audaicty log --- src/prefs/DirectoriesPrefs.cpp | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/src/prefs/DirectoriesPrefs.cpp b/src/prefs/DirectoriesPrefs.cpp index e20de12ae..c3e007f2b 100644 --- a/src/prefs/DirectoriesPrefs.cpp +++ b/src/prefs/DirectoriesPrefs.cpp @@ -68,6 +68,16 @@ public: return true; } + virtual bool TransferToWindow() wxOVERRIDE + { + return true; + } + + virtual bool TransferFromWindow() wxOVERRIDE + { + return true; + } + void OnChar(wxKeyEvent &evt) { evt.Skip();