mirror of
https://github.com/PredatH0r/ChanSort.git
synced 2026-02-20 13:26:50 +01:00
- fix: symbol rate corrupted on LG LA/LN models
- disable LG sat channel list editing when preset program numbers are present
This commit is contained in:
@@ -135,10 +135,19 @@ namespace ChanSort.Loader.LG
|
||||
this.ReadFirmwareDataBlock(ref off);
|
||||
this.ReadDvbCtChannels(ref off);
|
||||
this.ReadDvbSBlock(ref off);
|
||||
this.ReadSettingsBlock(ref off);
|
||||
this.ReadSettingsBlock(ref off);
|
||||
|
||||
if (this.presetChannels > 0 && !IsTesting)
|
||||
new PresetProgramNrDialog().ShowDialog();
|
||||
if (this.presetChannels > 0)
|
||||
{
|
||||
this.satTvChannels.ReadOnly = true;
|
||||
this.satRadioChannels.ReadOnly = true;
|
||||
foreach (var channel in this.satTvChannels.Channels)
|
||||
channel.NewProgramNr = channel.OldProgramNr;
|
||||
foreach (var channel in this.satRadioChannels.Channels)
|
||||
channel.NewProgramNr = channel.OldProgramNr;
|
||||
if (!IsTesting)
|
||||
new PresetProgramNrDialog().ShowDialog();
|
||||
}
|
||||
|
||||
#if STORE_DVBS_CHANNELS_IN_DATABASE
|
||||
this.StoreToDatabase();
|
||||
|
||||
Reference in New Issue
Block a user