the massive preparations - GUI

This commit is contained in:
tildearrow 2024-05-26 19:31:17 -05:00
parent 34c176a799
commit 00e0679442
48 changed files with 41493 additions and 2734 deletions

View file

@ -32,10 +32,10 @@ DivSystem FurnaceGUI::systemPicker() {
}
ImGui::SetNextItemWidth(ImGui::GetContentRegionAvail().x);
if (ImGui::InputTextWithHint("##SysSearch","Search...",&sysSearchQuery)) reissueSearch=true;
if (ImGui::InputTextWithHint("##SysSearch",_("Search..."),&sysSearchQuery)) reissueSearch=true;
if (ImGui::BeginTabBar("SysCats")) {
for (int i=0; chipCategories[i]; i++) {
if (ImGui::BeginTabItem(chipCategoryNames[i])) {
if (ImGui::BeginTabItem(_(chipCategoryNames[i]))) {
if (ImGui::IsItemActive()) {
reissueSearch=true;
}
@ -94,4 +94,4 @@ DivSystem FurnaceGUI::systemPicker() {
}
ImGui::EndChild();
return ret;
}
}