mirror of
https://github.com/HarbourMasters/Shipwright.git
synced 2025-08-21 05:43:42 -07:00
Updated Check Tracker to use the gears icon to Show Check Logic.
This commit is contained in:
parent
52b767619c
commit
2a2ab3a3e9
1 changed files with 4 additions and 1 deletions
|
@ -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");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue