mirror of
https://github.com/Artemis-RGB/Artemis
synced 2025-12-13 05:48:35 +00:00
Compare commits
26 Commits
1e8c68bbeb
...
a6e75d7a40
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
a6e75d7a40 | ||
| bedf1f5f38 | |||
|
|
972f1c638c | ||
|
|
4debfee6c1 | ||
|
|
a793a08213 | ||
|
|
0e911d68ba | ||
|
|
bd904178c8 | ||
|
|
7052ee38b6 | ||
|
|
d9a3a238af | ||
|
|
058513fd2a | ||
|
|
e5cb058152 | ||
|
|
4c2eca29cc | ||
|
|
8d7af6bb85 | ||
|
|
91d1d16f24 | ||
|
|
e588a06516 | ||
|
|
8c1fef2883 | ||
|
|
1201820799 | ||
|
|
59c9538e65 | ||
|
|
9fcd20d762 | ||
|
|
554f3e1ac7 | ||
|
|
13c4820738 | ||
|
|
1d23c69d39 | ||
|
|
e6565a2896 | ||
|
|
39c0b6c51b | ||
|
|
be92701c67 | ||
|
|
6956f09bb6 |
@ -167,7 +167,7 @@ public class ProfileCategory : CorePropertyChanged, IStorageModel
|
||||
IsSuspended = Entity.IsSuspended;
|
||||
Order = Entity.Order;
|
||||
|
||||
ProfileConfigurations = new ReadOnlyCollection<ProfileConfiguration>(Entity.ProfileConfigurations.Select(pc => new ProfileConfiguration(this, pc)).ToList());
|
||||
ProfileConfigurations = new ReadOnlyCollection<ProfileConfiguration>(Entity.ProfileConfigurations.Select(pc => new ProfileConfiguration(this, pc)).OrderBy(pc => pc.Order).ToList());
|
||||
}
|
||||
|
||||
/// <inheritdoc />
|
||||
@ -180,7 +180,10 @@ public class ProfileCategory : CorePropertyChanged, IStorageModel
|
||||
|
||||
Entity.ProfileConfigurations.Clear();
|
||||
foreach (ProfileConfiguration profileConfiguration in ProfileConfigurations)
|
||||
{
|
||||
profileConfiguration.Save();
|
||||
Entity.ProfileConfigurations.Add(profileConfiguration.Entity);
|
||||
}
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
@ -59,7 +59,7 @@
|
||||
<PackageVersion Include="Splat.DryIoc" Version="15.1.1" />
|
||||
<PackageVersion Include="StrawberryShake.Server" Version="13.9.6" />
|
||||
<PackageVersion Include="System.IdentityModel.Tokens.Jwt" Version="7.6.2" />
|
||||
<PackageVersion Include="System.Text.Json" Version="8.0.3" />
|
||||
<PackageVersion Include="System.Text.Json" Version="8.0.4" />
|
||||
<PackageVersion Include="TextMateSharp.Grammars" Version="1.0.57" />
|
||||
</ItemGroup>
|
||||
</Project>
|
||||
Loading…
x
Reference in New Issue
Block a user