diff options
author | sr55 <[email protected]> | 2017-08-26 21:28:23 +0100 |
---|---|---|
committer | sr55 <[email protected]> | 2017-08-26 21:28:23 +0100 |
commit | 912573e4a17c73fa8b26ae2248fa1727b77ca08c (patch) | |
tree | fb0cc23111f4b12a0648fc22718a5ef86782f828 /win/CS/HandBrakeWPF/Views | |
parent | a69fb175e95b6600b90b6c5c6fc68a77539cde00 (diff) |
WinGui: Fixes to chapters tab to correctly handle queue edit jobs. Fixes #870
Diffstat (limited to 'win/CS/HandBrakeWPF/Views')
-rw-r--r-- | win/CS/HandBrakeWPF/Views/ChaptersView.xaml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/win/CS/HandBrakeWPF/Views/ChaptersView.xaml b/win/CS/HandBrakeWPF/Views/ChaptersView.xaml index 6dfe53410..50e3698ac 100644 --- a/win/CS/HandBrakeWPF/Views/ChaptersView.xaml +++ b/win/CS/HandBrakeWPF/Views/ChaptersView.xaml @@ -28,7 +28,7 @@ <Button Content="{x:Static Properties:ResourcesUI.ChaptersView_Export}" Name="export" Grid.Column="3" Width="75" cal:Message.Attach="[Event Click] = [Action Export]" />
</Grid>
- <DataGrid Grid.Row="2" Margin="10" ItemsSource="{Binding Task.ChapterNames}"
+ <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">
|