mirror of
https://github.com/jeremysrand/ListenerApp.git
synced 2024-12-21 13:29:53 +00:00
Fix the backspace character.
This commit is contained in:
parent
2a7361afa8
commit
b389139826
@ -151,7 +151,7 @@ struct ContentView: View {
|
||||
}
|
||||
var stringToSend = ""
|
||||
if (commonChars < self.textHeard.count) {
|
||||
stringToSend = String(repeating: "\u{8}", count: self.textHeard.count - commonChars)
|
||||
stringToSend = String(repeating: "\u{7f}", count: self.textHeard.count - commonChars)
|
||||
}
|
||||
stringToSend.append(contentsOf: latestText.suffix(latestText.count - commonChars))
|
||||
|
||||
|
@ -17,7 +17,7 @@
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>1.0</string>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>66</string>
|
||||
<string>73</string>
|
||||
<key>LSRequiresIPhoneOS</key>
|
||||
<true/>
|
||||
<key>NSSpeechRecognitionUsageDescription</key>
|
||||
|
Loading…
Reference in New Issue
Block a user