Skip to content
New issue

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

message input choose text direction (RTL or LTR) based on input #2039

Merged
merged 1 commit into from Jan 6, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Expand Up @@ -13,6 +13,8 @@
- Try to always focus composer textarea
- Store relative instead of absolute path to last Account #2028

### Fixed
- correctly display RTL text inside of the message input field (see #2036)

## [1.14.1] - 2020-12-15

Expand Down
1 change: 1 addition & 0 deletions src/renderer/components/composer/ComposerMessageInput.tsx
Expand Up @@ -213,6 +213,7 @@ export default class ComposerMessageInput extends React.Component<
onChange={this.onChange}
placeholder={window.static_translate('write_message_desktop')}
disabled={this.state.loadingDraft}
dir='auto'
/>
)
}
Expand Down