mirror of
https://github.com/AlexandreRouma/SDRPlusPlus.git
synced 2026-04-18 22:32:44 +00:00
Switched to ImGui::TextUnfort
This commit is contained in:
@@ -30,40 +30,11 @@ namespace LoadingScreen {
|
||||
ImGui::BeginPopupModal("Credits", NULL, ImGuiWindowFlags_AlwaysAutoResize | ImGuiWindowFlags_NoTitleBar | ImGuiWindowFlags_NoMove | ImGuiWindowFlags_NoBackground);
|
||||
|
||||
ImGui::PushFont(style::hugeFont);
|
||||
ImGui::Text("SDR++ ");
|
||||
ImGui::TextUnformatted("SDR++ ");
|
||||
ImGui::PopFont();
|
||||
ImGui::SameLine();
|
||||
ImGui::Image(icons::LOGO, ImVec2(128, 128));
|
||||
// ImGui::Spacing();
|
||||
// ImGui::Spacing();
|
||||
// ImGui::Spacing();
|
||||
|
||||
// ImGui::Text("This software is brought to you by\n\n");
|
||||
|
||||
// ImGui::Columns(3, "CreditColumns", true);
|
||||
|
||||
// ImGui::Text("Contributors");
|
||||
// for (int i = 0; i < sdrpp_credits::contributorCount; i++) {
|
||||
// ImGui::BulletText("%s", sdrpp_credits::contributors[i]);
|
||||
// }
|
||||
|
||||
// ImGui::NextColumn();
|
||||
// ImGui::Text("Libraries");
|
||||
// for (int i = 0; i < sdrpp_credits::libraryCount; i++) {
|
||||
// ImGui::BulletText("%s", sdrpp_credits::libraries[i]);
|
||||
// }
|
||||
|
||||
// ImGui::NextColumn();
|
||||
// ImGui::Text("Patrons");
|
||||
// for (int i = 0; i < sdrpp_credits::patronCount; i++) {
|
||||
// ImGui::BulletText("%s", sdrpp_credits::patrons[i]);
|
||||
// }
|
||||
|
||||
// ImGui::Columns(1, "CreditColumnsEnd", true);
|
||||
|
||||
// ImGui::Spacing();
|
||||
// ImGui::Spacing();
|
||||
// ImGui::Spacing();
|
||||
ImVec2 origPos = ImGui::GetCursorPos();
|
||||
ImGui::SetCursorPosY(origPos.y + 50);
|
||||
ImGui::Text("%s", msg.c_str());
|
||||
|
||||
Reference in New Issue
Block a user