We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
A piece of code in Element auto-correct user input in Riot/modules/Room/Views/InputToolbar/RoomInputToolbarView.swift:sendCurrentMessage()
Riot/modules/Room/Views/InputToolbar/RoomInputToolbarView.swift:sendCurrentMessage()
// Triggers auto-correct if needed. if self.isFirstResponder { let temp = UITextField(frame: .zero) temp.isHidden = true self.addSubview(temp) temp.becomeFirstResponder() self.becomeFirstResponder() temp.removeFromSuperview() }
Although it is usually ok to help user correcting its input, it should not be done when input is a command.
For instance, it makes command /discardsession to be rewritten as /discard session and makes the command not identified.
/discardsession
/discard session
I propose that command (string beginning with a '/') should not be auto-corrected.
It is a problem on Element side (element-hq/element-ios#7424)
The text was updated successfully, but these errors were encountered:
Input command should not be auto-corrected (#777)
a8e0b10
0222974
Merge pull request #798 from tchapgouv/777-input-command-should-not-b…
da99be7
…e-auto-corrected Input command should not be auto-corrected (#777)
Add changeLog on issue #777
398e460
Merge pull request #802 from tchapgouv/801-add-changelog-on-issue-777
daf3ea4
NicolasBuquet
Successfully merging a pull request may close this issue.
A piece of code in Element auto-correct user input in
Riot/modules/Room/Views/InputToolbar/RoomInputToolbarView.swift:sendCurrentMessage()
Although it is usually ok to help user correcting its input, it should not be done when input is a command.
For instance, it makes command
/discardsession
to be rewritten as/discard session
and makes the command not identified.I propose that command (string beginning with a '/') should not be auto-corrected.
It is a problem on Element side (element-hq/element-ios#7424)
The text was updated successfully, but these errors were encountered: