Skip to content

Commit

Permalink
Add warnings to inform Visualiser issues #5111
Browse files Browse the repository at this point in the history
  • Loading branch information
derwin12 authored and dkulp committed Jan 19, 2025
1 parent 92107f1 commit 601becc
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion xLights/ControllerModelDialog.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2186,11 +2186,17 @@ void ControllerModelDialog::ReloadModels()
sh += ", ";
sh += it;
}
check += "WARN: " + it.second->Name() + " is shadowed by " + sh + ".\n ";
check += "WARN: " + it.second->Name() + " is shadowed by " + sh + ".\n";
}
}
}
}
if (!_autoLayout) {
check += "WARN: Auto Layout not set. Some functionality disabled.\n";
}
if (!_controller->IsAutoSize()) {
check += "WARN: Auto Size not set. Some functionality disabled.\n";
}

TextCtrl_Check->SetValue(check);

Expand Down

0 comments on commit 601becc

Please sign in to comment.