mirror of
https://git.do.srb2.org/STJr/UltimateZoneBuilder.git
synced 2024-11-23 04:12:12 +00:00
Skip validating unchecked game config resources (#593)
This commit is contained in:
parent
ce42935863
commit
6622c6f516
1 changed files with 1 additions and 1 deletions
|
@ -395,7 +395,7 @@ namespace CodeImp.DoomBuilder.Windows
|
|||
{
|
||||
// Get configuration item
|
||||
ci = listconfigs.Items[i].Tag as ConfigurationInfo;
|
||||
if(!ci.Resources.IsValid())
|
||||
if(listconfigs.Items[i].Checked && !ci.Resources.IsValid())
|
||||
{
|
||||
MessageBox.Show(this, "At least one resource doesn't exist in \"" + ci.Name + "\" game configuration!", Application.ProductName, MessageBoxButtons.OK, MessageBoxIcon.Warning);
|
||||
tabs.SelectedTab = tabresources;
|
||||
|
|
Loading…
Reference in a new issue