GUI: fix empty tree node

This commit is contained in:
tildearrow 2024-05-17 11:13:56 -05:00
parent ba51120523
commit 9d500a23d4

View file

@ -485,6 +485,8 @@ void FurnaceGUI::drawSettings() {
} }
ImGui::TextWrapped("the following values are common (in red, green, blue, alpha order):\n- 24 bits: 8, 8, 8, 0\n- 16 bits: 5, 6, 5, 0\n- 32 bits (with alpha): 8, 8, 8, 8\n- 30 bits (deep): 10, 10, 10, 0"); ImGui::TextWrapped("the following values are common (in red, green, blue, alpha order):\n- 24 bits: 8, 8, 8, 0\n- 16 bits: 5, 6, 5, 0\n- 32 bits (with alpha): 8, 8, 8, 8\n- 30 bits (deep): 10, 10, 10, 0");
} else {
ImGui::Text("nothing to configure");
} }
ImGui::TreePop(); ImGui::TreePop();
} }