Skip to content

Commit

Permalink
ux: enable text wrap in notification panel
Browse files Browse the repository at this point in the history
  • Loading branch information
love-linger committed Dec 19, 2024
1 parent 37bf6de commit 9a6d6bb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Views/LauncherPage.axaml
Original file line number Diff line number Diff line change
Expand Up @@ -126,8 +126,8 @@
</Grid>

<Border Grid.Row="1" Margin="8" Background="Transparent">
<ScrollViewer MaxHeight="200" HorizontalScrollBarVisibility="Auto" VerticalScrollBarVisibility="Auto">
<TextBlock Margin="4,2" TextWrapping="NoWrap" Text="{Binding Message}"/>
<ScrollViewer MaxHeight="200" HorizontalScrollBarVisibility="Disabled" VerticalScrollBarVisibility="Auto">
<TextBlock Margin="4,2" TextWrapping="Wrap" Text="{Binding Message}"/>
</ScrollViewer>
</Border>
</Grid>
Expand Down

0 comments on commit 9a6d6bb

Please sign in to comment.