mirror of
https://github.com/PredatH0r/ChanSort.git
synced 2026-03-18 01:40:18 +01:00
- FIX: Resizing a column caused an exception
- FIX: Deleting satellite channels from an SCM file did not work correctly - Improved SCM file format detection - Samsung E/F-Series: channels in the favorite lists now use their prog# instead of all being put at #1 - fixed LG unit tests - fixed Samsung tests
This commit is contained in:
@@ -15,7 +15,7 @@ namespace ChanSort.Loader.Samsung
|
||||
public readonly int dvbtFineTuneLength;
|
||||
public readonly Favorites supportedFavorites;
|
||||
public readonly int ptcLength;
|
||||
public readonly int favoriteNotSetValue;
|
||||
public readonly bool SortedFavorites;
|
||||
|
||||
public ModelConstants(IniFile.Section iniSection)
|
||||
{
|
||||
@@ -34,7 +34,7 @@ namespace ChanSort.Loader.Samsung
|
||||
for (int i = 0; i < numFavorites; i++)
|
||||
mask = (mask << 1) | 1;
|
||||
this.supportedFavorites = (Favorites)mask;
|
||||
this.favoriteNotSetValue = iniSection.GetInt("FavoriteNotSet");
|
||||
this.SortedFavorites = iniSection.GetInt("SortedFavorites") != 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user