We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b7eb9fb commit 37dce1cCopy full SHA for 37dce1c
simulation/halsim_gui/src/main/native/cpp/DriverStationGui.cpp
@@ -1043,11 +1043,11 @@ static void DriverStationExecute() {
1043
1044
bool disableDS = IsDSDisabled();
1045
if (disableDS && !prevDisableDS) {
1046
- if (auto win = HALSimGui::manager->GetWindow("System Joysticks")) {
+ if (auto win = DriverStationGui::dsManager->GetWindow("System Joysticks")) {
1047
win->SetVisibility(glass::Window::kDisabled);
1048
}
1049
} else if (!disableDS && prevDisableDS) {
1050
1051
win->SetVisibility(glass::Window::kShow);
1052
1053
0 commit comments