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
Several issues with processing right-to-left texts.
As you can see, the picture describes two bugs:
XAML code:
<StackPanel Width="100" Spacing="6" Orientation="Vertical"> <TextBox Name="Input" Text="aaa bbb ccc ddd eee" TextWrapping="Wrap"/> <Label Content="RightToLeft:"/> <TextBlock Text="{Binding #Input.Text}" TextWrapping="Wrap" Background="LightGray" FlowDirection="RightToLeft"/> <Label Content="LeftToRight:"/> <TextBlock Text="{Binding #Input.Text}" TextWrapping="Wrap" Background="LightGray" FlowDirection="LeftToRight"/> </StackPanel>
RTL text should be processed and laid out correctly.
11.2.0-beta2
Windows
No response
The text was updated successfully, but these errors were encountered:
Pretty much a duplicate of #16165.
Sorry, something went wrong.
Successfully merging a pull request may close this issue.
Describe the bug
Several issues with processing right-to-left texts.
As you can see, the picture describes two bugs:
Wrapped RTL text adds an unnecessary empty line to the desired size of the control.To Reproduce
XAML code:
Expected behavior
RTL text should be processed and laid out correctly.
Avalonia version
11.2.0-beta2
OS
Windows
Additional context
No response
The text was updated successfully, but these errors were encountered: