Skip to content
This repository has been archived by the owner on Jan 29, 2024. It is now read-only.

Commit

Permalink
Fixed #73
Browse files Browse the repository at this point in the history
  • Loading branch information
COM8 committed Nov 2, 2019
1 parent 086c565 commit 071aef6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
5 changes: 3 additions & 2 deletions UWPX_UI/Controls/Chat/ChatDetailsControl.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -292,7 +292,7 @@
VerticalAlignment="Bottom"
Content=""
FontFamily="{ThemeResource SymbolThemeFontFamily}"
FontSize="27"
FontSize="25"
Style="{ThemeResource TransparentThemeButtonStyle}"
ToolTipService.ToolTip="Emoji"
Visibility="{x:Bind VIEW_MODEL.MODEL.IsEmojiFlyoutEnabled, Mode=OneWay, Converter={StaticResource BoolVisibilityValueConverter}}">
Expand All @@ -304,6 +304,7 @@
</Button>
<chat:EnterTextBox x:Name="message_tbx"
Grid.Column="2"
VerticalAlignment="Center"
EnterKeyDown="Message_tbx_EnterKeyDown"
Style="{ThemeResource MessageTextBoxStyle}"
Text="{x:Bind VIEW_MODEL.MODEL.MessageText, Mode=TwoWay, UpdateSourceTrigger=PropertyChanged}"/>
Expand All @@ -312,7 +313,7 @@
VerticalAlignment="Bottom"
AllowFocusOnInteraction="False"
Click="Send_btn_Click"
FontSize="27"
FontSize="25"
IsEnabled="{x:Bind message_tbx.Text, Converter={StaticResource StringEmptyEnabledBoolValueConverter}, Mode=OneWay}"
Style="{ThemeResource TransparentThemeButtonStyle}"
ToolTipService.ToolTip="Send message">
Expand Down
2 changes: 1 addition & 1 deletion UWPX_UI/Resources/Styles/MessageTextBoxStyle.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
<Setter Property="AcceptsReturn" Value="True"/>
<Setter Property="IsFocusEngagementEnabled" Value="True"/>
<Setter Property="PlaceholderText" Value="Message..."/>
<Setter Property="FontSize" Value="20"/>
<Setter Property="FontSize" Value="14"/>
<Setter Property="TextWrapping" Value="Wrap"/>
<Setter Property="InputScope" Value="Chat"/>
<Setter Property="Foreground" Value="{ThemeResource TextControlForeground}"/>
Expand Down

0 comments on commit 071aef6

Please sign in to comment.