diff --git a/Aaru.Gui/ViewModels/Windows/ViewSectorViewModel.cs b/Aaru.Gui/ViewModels/Windows/ViewSectorViewModel.cs index 79c2de483..3e923d9cb 100644 --- a/Aaru.Gui/ViewModels/Windows/ViewSectorViewModel.cs +++ b/Aaru.Gui/ViewModels/Windows/ViewSectorViewModel.cs @@ -158,6 +158,20 @@ public sealed partial class ViewSectorViewModel : ViewModelBase return; } + if(SectorData.Length == 2052 && LongSectorChecked) + { + // Blu-ray sector + + ColorRange bd_edc = new ColorRange + { + Color = Brushes.LimeGreen, + Start = 2048, + End = 2051 + }; + + HighlightRanges = [bd_edc]; + } + // Not a standard CD sector if(SectorData.Length != 2352) return;