mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-04-09 04:59:31 -06:00
trim the input string in the conversation view for better lexical matching
This commit is contained in:
@@ -82,7 +82,7 @@ public class ConversationView extends ScrollView {
|
||||
inputMethodManager.toggleSoftInput(InputMethodManager.SHOW_IMPLICIT, 0);
|
||||
}
|
||||
if (mSpeechListener != null)
|
||||
mSpeechListener.onSpeechInput(text.toString());
|
||||
mSpeechListener.onSpeechInput(text.toString().trim());
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
|
||||
Reference in New Issue
Block a user