diff options
author | Sam H <[email protected]> | 2018-06-13 22:16:20 +0100 |
---|---|---|
committer | Scott <[email protected]> | 2018-06-14 19:39:58 +0100 |
commit | cd533d4ae47317ffef69bcea6ec69d2a711b7798 (patch) | |
tree | 7b9d2834bfc38fffd997a21ef2921aee3e05c4d0 | |
parent | 99162805269b5c5804d2a2cd099c599f30599c6a (diff) |
WinGui: Soften the colour of the grid lines in the chapters table
-rw-r--r-- | win/CS/HandBrakeWPF/Views/ChaptersView.xaml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/win/CS/HandBrakeWPF/Views/ChaptersView.xaml b/win/CS/HandBrakeWPF/Views/ChaptersView.xaml index 5aca7d44a..824f19e11 100644 --- a/win/CS/HandBrakeWPF/Views/ChaptersView.xaml +++ b/win/CS/HandBrakeWPF/Views/ChaptersView.xaml @@ -31,7 +31,8 @@ <DataGrid Grid.Row="2" Margin="10" ItemsSource="{Binding Chapters}"
VerticalAlignment="Stretch" AutoGenerateColumns="False"
CanUserSortColumns="False" CanUserReorderColumns="False" CanUserResizeColumns="False" CanUserResizeRows="False"
- CanUserAddRows="False" CanUserDeleteRows="False" HeadersVisibility="Column">
+ CanUserAddRows="False" CanUserDeleteRows="False" HeadersVisibility="Column"
+ HorizontalGridLinesBrush="#FFABADB3" VerticalGridLinesBrush="#FFABADB3">
<DataGrid.CellStyle>
<Style TargetType="DataGridCell">
<Setter Property="MinHeight" Value="22" />
|