Skip to content

Commit

Permalink
wrap content text
Browse files Browse the repository at this point in the history
solves portion of telstrapurple#87
  • Loading branch information
philipmat committed Sep 5, 2023
1 parent a7ca861 commit 7d2b7f0
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion PurpleExplorer/Views/MessageDetailsWindow.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,9 @@
<TextBlock Grid.Row="1" Grid.Column="1" Text="{Binding Message.ContentType}" Classes="right" />

<TextBlock Text="Content" Grid.Row="2" Classes="left" Grid.Column="0" />
<TextBox Grid.Row="2" Grid.Column="1" IsReadOnly="True" Name="ContentTextBlock" Text="{Binding Message.Content}" />
<TextBox Grid.Row="2" Grid.Column="1" IsReadOnly="True" Name="ContentTextBlock"
TextWrapping="Wrap"
Text="{Binding Message.Content}" />

<TextBlock Grid.Row="3" Grid.Column="0" Classes="left" Text="Sequence Number" />
<TextBlock Grid.Row="3" Grid.Column="1" Classes="right" Text="{Binding Message.SequenceNumber}" />
Expand Down

0 comments on commit 7d2b7f0

Please sign in to comment.