Skip to content

Commit 00ae596

Browse files
committed
UI: ImGui: Update "About" dialog message
1 parent 06e8a92 commit 00ae596

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

src/Widgets/ImGui_UI.cpp

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,23 +16,25 @@ void ImGuiUI::onImGuiDisplay()
1616
//
1717
{
1818
ImGui::SetNextWindowPos(ImVec2(initialSize / 4, initialSize / 16), ImGuiCond_Once);
19-
ImGui::SetNextWindowSize(ImVec2(600, 230), ImGuiCond_Once);
19+
ImGui::SetNextWindowSize(ImVec2(600, 250), ImGuiCond_Once);
2020

2121
if (isAboutWindowOpen)
2222
{
2323
ImGui::Begin("About " DISTRHO_PLUGIN_NAME, &isAboutWindowOpen, ImGuiWindowFlags_NoCollapse | ImGuiWindowFlags_NoResize);
2424
{
2525
ImGui::SeparatorText("Cetone Synth Light");
26-
ImGui::Text("Light-weight monophonic analogue-style synthesizer, by Neotec Software.\n");
26+
ImGui::Text("Light-weight monophonic analogue-style synthesizer, by Neotec Software.");
27+
ImGui::Text("Copyright © 2007, Neotec Software.");
28+
ImGui::Text("Copyright © 2024-2025, AnClark Liu <[email protected]>.");
2729

2830
ImGui::SeparatorText("Authors");
2931
ImGui::BulletText("René 'Neotec' Jeschke - Original developer");
30-
ImGui::BulletText("AnClark Liu <[email protected]> - Ported to DPF, Further developments");
32+
ImGui::BulletText("AnClark Liu - Ported to DPF, Further developments");
3133

3234
ImGui::SeparatorText("License");
3335
ImGui::BulletText("This project is licensed under GNU General Public License, version 3.");
3436

35-
ImGui::Text("\n\n");
37+
ImGui::Text("\n");
3638
ImGui::Dummy(ImVec2(490, 0));
3739
ImGui::SameLine();
3840
if (ImGui::Button("OK", ImVec2(80, 0)))

0 commit comments

Comments
 (0)