1
0
mirror of https://github.com/Artemis-RGB/Artemis synced 2025-12-13 05:48:35 +00:00

Merge branch 'development'

This commit is contained in:
Diogo Trindade 2022-11-14 12:23:06 +00:00
commit c3c815c7f2

View File

@ -245,6 +245,10 @@ public class ColorGradient : IList<ColorGradientStop>, IList, INotifyCollectionC
//if the position is before the first stop, return that color
if (stop2Index == 0)
return _stops[0].Color;
//if the position is after the last stop, return that color
if (stop2Index == -1)
return _stops[^1].Color;
//interpolate between that one and the one before
int stop1Index = stop2Index - 1;