diff options
author | sr55 <[email protected]> | 2020-01-13 21:08:39 +0000 |
---|---|---|
committer | sr55 <[email protected]> | 2020-01-13 21:08:39 +0000 |
commit | 5daeeef076cfde998143cf2802823bd887f78dfd (patch) | |
tree | 50ff6fbcbcfe0c7e71ee1b5c0c18e693ef6a8838 /win/CS/HandBrakeWPF | |
parent | 11878dc76a979b93d1362cde313bf2763ae66d33 (diff) |
WinGui: Improve rendering of queue filename when the filename > 1 line for the listbox. Fixes #2570
Diffstat (limited to 'win/CS/HandBrakeWPF')
-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}"
|