Updated Check Tracker to use the gears icon to Show Check Logic.

This commit is contained in:
Anthony Stewart 2025-07-11 23:55:25 -05:00 committed by xxAtrain223
commit 2a2ab3a3e9

View file

@ -1928,9 +1928,12 @@ void DrawLocation(RandomizerCheck rc) {
}
ImGui::SameLine();
if (ImGui::Button(("Show Check Logic##" + std::to_string(rc)).c_str())) {
if (ImGui::Button((std::string(ICON_FA_COGS) + "##" + std::to_string(rc)).c_str())) {
LogicTrackerWindow::ShowRandomizerCheck(rc);
}
if (ImGui::IsItemHovered()) {
ImGui::SetTooltip("Show Check Logic");
}
}
}