[Image verification] Allow to verify only data (non-audio) tracks.

This commit is contained in:
2025-11-24 01:23:30 +00:00
parent bfe36a62e1
commit 389ae5d5d5
6 changed files with 51 additions and 18 deletions

View File

@@ -54,7 +54,7 @@
RowSpacing="8"
Margin="12">
<Grid Grid.Row="0"
RowDefinitions="Auto,Auto"
RowDefinitions="Auto,Auto,Auto"
RowSpacing="8"
IsVisible="{Binding OptionsVisible, Mode=OneWay}">
<CheckBox Grid.Row="0"
@@ -68,6 +68,12 @@
IsVisible="{Binding VerifySectorsVisible, Mode=OneWay}">
<TextBlock Text="{x:Static localization:UI.Verify_all_sectors_if_supported}" />
</CheckBox>
<CheckBox Grid.Row="2"
IsChecked="{Binding VerifyOnlyDataChecked, Mode=TwoWay}"
IsEnabled="{Binding VerifySectorsEnabled, Mode=OneWay}"
IsVisible="{Binding VerifySectorsVisible, Mode=OneWay}">
<TextBlock Text="{x:Static localization:UI.Verify_only_data_help}" />
</CheckBox>
</Grid>
<Grid Grid.Row="1"
RowDefinitions="*, Auto"