[glass] Don't check IsConnected for NT widgets (#4674)

Checking this isn't required, and prevented these widgets from working
in the simulation GUI without another NT client connected.
This commit is contained in:
Peter Johnson
2022-11-20 17:27:28 -08:00
committed by GitHub
parent 9a36373b8f
commit 98e922313b
15 changed files with 15 additions and 15 deletions

View File

@@ -34,5 +34,5 @@ void NTSubsystemModel::Update() {
}
bool NTSubsystemModel::Exists() {
return m_inst.IsConnected() && m_defaultCommand.Exists();
return m_defaultCommand.Exists();
}