Add link to resources repo in help dialog (#233)

This commit is contained in:
Jack Tench 2026-01-22 13:24:44 +00:00 committed by GitHub
parent 424f37c6aa
commit 0224bf3eb4
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -62,6 +62,8 @@ static void build_help_dialog(GtkApplication* app, gpointer data)
gtk_container_add(GTK_CONTAINER(box), discord_lnk);
GtkWidget* github_lnk = gtk_link_button_new_with_label("https://github.com/LibreSplit/LibreSplit", "Check out the source code");
gtk_container_add(GTK_CONTAINER(box), github_lnk);
GtkWidget* resources_lnk = gtk_link_button_new_with_label("https://github.com/LibreSplit/LibreSplit-resources", "Check out themes, autosplitters and splitfiles!");
gtk_container_add(GTK_CONTAINER(box), resources_lnk);
GtkWidget* wiki_lnk = gtk_link_button_new_with_label("https://github.com/LibreSplit/LibreSplit/wiki", "Check our Wiki");
gtk_container_add(GTK_CONTAINER(box), wiki_lnk);