Skip to content

Commit

Permalink
fix: 空值检查对象错误
Browse files Browse the repository at this point in the history
  • Loading branch information
tangge233 committed Sep 22, 2024
1 parent 8902ffd commit eb52f3e
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -116,10 +116,10 @@
If FrmVersionWorld IsNot Nothing Then FrmVersionWorld.Reload()
ItemWorld.Checked = True
Case FormMain.PageSubType.VersionResourcePack
If FrmVersionWorld IsNot Nothing Then FrmVersionResourcePack.Reload()
If FrmVersionResourcePack IsNot Nothing Then FrmVersionResourcePack.Reload()
ItemResourcePack.Checked = True
Case FormMain.PageSubType.VersionShader
If FrmVersionWorld IsNot Nothing Then FrmVersionShader.Reload()
If FrmVersionShader IsNot Nothing Then FrmVersionShader.Reload()
ItemShader.Checked = True
End Select
Catch ex As Exception
Expand Down

0 comments on commit eb52f3e

Please sign in to comment.