| 77 | } |
| 78 | |
| 79 | void utils::ShowStyleEditorWindow(bool *child_sty) |
| 80 | { |
| 81 | ImGui::SetNextWindowSize(ImVec2(500,700), ImGuiCond_Once); |
| 82 | if (ImGui::Begin("Style Editor", child_sty, ImGuiWindowFlags_NoCollapse)) |
| 83 | { |
| 84 | ImGui::ShowStyleEditor(); |
| 85 | ImGui::End(); |
| 86 | } |
| 87 | |
| 88 | } |
| 89 | |
| 90 | void utils::ShowColorExportWindow(bool *child_colexp) |
| 91 | { |