mirror of
https://github.com/Microsoft/calculator.git
synced 2025-08-20 21:33:10 -07:00
Fix function symbols in RtoL (#914)
This commit is contained in:
parent
bea4c2429f
commit
9b9c9fb7ee
2 changed files with 7 additions and 4 deletions
|
@ -374,6 +374,7 @@
|
||||||
HorizontalAlignment="Center"
|
HorizontalAlignment="Center"
|
||||||
VerticalAlignment="Center"
|
VerticalAlignment="Center"
|
||||||
Background="Transparent"
|
Background="Transparent"
|
||||||
|
FlowDirection="LeftToRight"
|
||||||
Orientation="Horizontal">
|
Orientation="Horizontal">
|
||||||
<FontIcon FontFamily="{StaticResource CalculatorFontFamily}" Glyph=""/>
|
<FontIcon FontFamily="{StaticResource CalculatorFontFamily}" Glyph=""/>
|
||||||
<TextBlock Margin="-5,19,0,0"
|
<TextBlock Margin="-5,19,0,0"
|
||||||
|
|
|
@ -174,10 +174,12 @@
|
||||||
FontFamily="{ThemeResource SymbolThemeFontFamily}"
|
FontFamily="{ThemeResource SymbolThemeFontFamily}"
|
||||||
FontSize="16"
|
FontSize="16"
|
||||||
Glyph=""/>
|
Glyph=""/>
|
||||||
<FontIcon FontFamily="{StaticResource CalculatorFontFamily}" Glyph=""/>
|
<StackPanel FlowDirection="LeftToRight" Orientation="Horizontal">
|
||||||
<TextBlock Margin="-5,19,0,0"
|
<FontIcon FontFamily="{StaticResource CalculatorFontFamily}" Glyph=""/>
|
||||||
FontSize="11"
|
<TextBlock Margin="-5,19,0,0"
|
||||||
Text="{x:Bind ViewModel.FunctionLabelIndex}"/>
|
FontSize="11"
|
||||||
|
Text="{x:Bind ViewModel.FunctionLabelIndex}"/>
|
||||||
|
</StackPanel>
|
||||||
</StackPanel>
|
</StackPanel>
|
||||||
</Button>
|
</Button>
|
||||||
<controls:MathRichEditBox Grid.Column="1"
|
<controls:MathRichEditBox Grid.Column="1"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue