Fancier Ko-fi link

This commit is contained in:
Asriel Camora
2024-07-03 23:17:12 -07:00
parent 9d343b5e4d
commit 5093867971
+9 -2
View File
@@ -951,8 +951,15 @@ public sealed class Settings : Window, IDisposable
ImGui.SameLine(0, 0); ImGui.SameLine(0, 0);
ImGui.TextUnformatted(")"); ImGui.TextUnformatted(")");
ImGuiUtils.AlignCentered(ImGui.CalcTextSize($"Ko-fi").X); using (ImRaii.PushColor(ImGuiCol.Text, new Vector4(0.07f, 0.76f, 1.00f, 1f)))
ImGuiUtils.Hyperlink("Ko-fi", "https://ko-fi.com/camora"); {
ImGuiUtils.AlignCentered(ImGui.CalcTextSize($"Support me on Ko-fi!").X);
ImGui.TextUnformatted($"Support me on ");
ImGui.SameLine(0, 0);
ImGuiUtils.Hyperlink("Ko-fi", "https://ko-fi.com/camora");
ImGui.SameLine(0, 0);
ImGui.TextUnformatted("!");
}
} }
} }