SaveTool: make the tuning tab present only in debug builds.
This commit is contained in:
parent
47890f6939
commit
133c34f5f7
1 changed files with 2 additions and 0 deletions
|
@ -138,10 +138,12 @@ void SaveTool::drawMassViewer() {
|
||||||
ImGui::EndTabItem();
|
ImGui::EndTabItem();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#ifdef SAVETOOL_DEBUG_BUILD
|
||||||
if(ImGui::BeginTabItem("Tuning (WIP)")) {
|
if(ImGui::BeginTabItem("Tuning (WIP)")) {
|
||||||
drawTuning();
|
drawTuning();
|
||||||
ImGui::EndTabItem();
|
ImGui::EndTabItem();
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
ImGui::EndTabBar();
|
ImGui::EndTabBar();
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue