chore: add doc link

This commit is contained in:
2025-12-17 03:11:15 +03:00
parent c58ff17289
commit 89888adf8d

View File

@@ -33,9 +33,7 @@ void about_window::render()
ImGui::Separator();
ImGui::Spacing();
ImGui::TextWrapped(
"A color scheme management tool."
);
ImGui::TextWrapped("A color scheme management tool.");
ImGui::Spacing();
ImGui::Spacing();
@@ -57,6 +55,17 @@ void about_window::render()
}
ImGui::SameLine();
if (ImGui::Button("Documentation", ImVec2(200, 0)))
{
#ifdef _WIN32
system("start https://binarygoose.dev/projects/clrsync/overview/");
#elif __APPLE__
system("open https://binarygoose.dev/projects/clrsync/overview/");
#else
system("xdg-open https://binarygoose.dev/projects/clrsync/overview/");
#endif
}
ImGui::Spacing();
ImGui::Spacing();
ImGui::Separator();
@@ -72,8 +81,7 @@ void about_window::render()
"copies of the Software, and to permit persons to whom the Software is "
"furnished to do so, subject to the following conditions:\n\n"
"The above copyright notice and this permission notice shall be included in all "
"copies or substantial portions of the Software."
);
"copies or substantial portions of the Software.");
ImGui::Spacing();
ImGui::Spacing();