diff --git a/Source/Krypton Components/Krypton.Toolkit/Controls Toolkit/KryptonDataGridViewCellIndicatorImage.cs b/Source/Krypton Components/Krypton.Toolkit/Controls Toolkit/KryptonDataGridViewCellIndicatorImage.cs index 758dd1d2e..73decf4f9 100644 --- a/Source/Krypton Components/Krypton.Toolkit/Controls Toolkit/KryptonDataGridViewCellIndicatorImage.cs +++ b/Source/Krypton Components/Krypton.Toolkit/Controls Toolkit/KryptonDataGridViewCellIndicatorImage.cs @@ -75,12 +75,15 @@ public KryptonDataGridView? DataGridView } } + /// + /// Cell indicator image. + /// public virtual Image? Image { get { _rwls.EnterReadLock(); - Image? image = _image; + var image = _image?.Clone() as Image; _rwls.ExitReadLock(); return image;