1
0
mirror of synced 2025-02-20 12:41:10 +01:00

Add null check if pixcturebox updates from other events

This commit is contained in:
KillzXGaming 2019-05-04 13:09:54 -04:00
parent f351f30eb7
commit d100a974eb
2 changed files with 3 additions and 0 deletions

Binary file not shown.

View File

@ -333,6 +333,9 @@ namespace Switch_Toolbox.Library.Forms
private void UpdatePictureBox(int ChannelIndex = 0)
{
if (ActiveTexture == null)
return;
DecodeProcessFinished = false;
PushImage(Properties.Resources.LoadingImage);