From 46ab381ae1e5aa1cd2d95e28802023c723892c5c Mon Sep 17 00:00:00 2001 From: miku-666 <74728189+NessieHax@users.noreply.github.com> Date: Wed, 13 Mar 2024 17:39:36 +0100 Subject: [PATCH] TextureChangingEventArgs - Change 'NewTexture' property to getter only --- PCK-Studio/Rendering/TextureChangingEventArgs.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/PCK-Studio/Rendering/TextureChangingEventArgs.cs b/PCK-Studio/Rendering/TextureChangingEventArgs.cs index f04469f9..6174e509 100644 --- a/PCK-Studio/Rendering/TextureChangingEventArgs.cs +++ b/PCK-Studio/Rendering/TextureChangingEventArgs.cs @@ -22,7 +22,7 @@ namespace PckStudio.Rendering { public class TextureChangingEventArgs : CancelEventArgs { - public Image NewTexture { get; set; } + public Image NewTexture { get; } public TextureChangingEventArgs(Image newTexture) : base() {