diff options
author | sr55 <[email protected]> | 2020-01-13 21:08:39 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2020-01-25 15:35:59 +0000 |
commit | a5422ad4fa058f42a0833db7277aa695a640f990 (patch) | |
tree | 0ddf86d55697dfd5d016734b9e01a18c01cf44fc /win/CS | |
parent | 4768a152b46e85b8fbd11677fde6c5e737bf4e48 (diff) |
WinGui: Improve rendering of queue filename when the filename > 1 line for the listbox. Fixes #2570
(cherry picked from commit 5daeeef076cfde998143cf2802823bd887f78dfd)
Diffstat (limited to 'win/CS')
-rw-r--r-- | win/CS/HandBrakeWPF/Views/QueueView.xaml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/win/CS/HandBrakeWPF/Views/QueueView.xaml b/win/CS/HandBrakeWPF/Views/QueueView.xaml index 0df09cff9..0d5042519 100644 --- a/win/CS/HandBrakeWPF/Views/QueueView.xaml +++ b/win/CS/HandBrakeWPF/Views/QueueView.xaml @@ -229,7 +229,7 @@ </Image>
<!-- Settings -->
- <Grid Grid.Column="1" Margin="0,3,5,3" Height="30" VerticalAlignment="Center">
+ <Grid Grid.Column="1" Margin="0,3,5,3" VerticalAlignment="Center">
<Grid.RowDefinitions>
<RowDefinition Height="Auto" />
</Grid.RowDefinitions>
@@ -241,7 +241,7 @@ <StackPanel Grid.Row="0" Grid.Column="0" VerticalAlignment="Center">
<TextBlock Text="{Binding Task.Destination, Converter={StaticResource filePathToFilenameConverter}}" Grid.Row="0" Grid.Column="0"
- TextTrimming="CharacterEllipsis" VerticalAlignment="Center" />
+ TextWrapping="Wrap" VerticalAlignment="Center" />
<ProgressBar Minimum="0" Height="4" Maximum="100" Name="pbStatus" HorizontalAlignment="Stretch" Margin="0,8,10,0"
Value="{Binding DataContext.ProgressValue, ElementName=queueJobs}" IsIndeterminate="{Binding DataContext.IntermediateProgress, ElementName=queueJobs}"
|