Skip to content

Commit

Permalink
chore(ui): add placeholders for artist and designer credits
Browse files Browse the repository at this point in the history
  • Loading branch information
andyholmes committed Aug 16, 2023
1 parent b369735 commit 41f7c73
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 4 deletions.
11 changes: 7 additions & 4 deletions src/libvalent/ui/valent-application-credits.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,13 @@

G_BEGIN_DECLS

// static const char *valent_application_credits_designers[] = {
// "Andy Holmes",
// NULL
// };
static const char *valent_application_credits_artists[] = {
NULL
};

static const char *valent_application_credits_designers[] = {
NULL
};

static const char *valent_application_credits_developers[] = {
"Andy Holmes",
Expand Down
2 changes: 2 additions & 0 deletions src/libvalent/ui/valent-window.c
Original file line number Diff line number Diff line change
Expand Up @@ -342,6 +342,8 @@ about_action (GtkWidget *widget,
"license-type", GTK_LICENSE_GPL_3_0,
"debug-info", debug_info,
"debug-info-filename", "valent-debug.json",
"artists", valent_application_credits_artists,
"designers", valent_application_credits_designers,
"developers", valent_application_credits_developers,
"documenters", valent_application_credits_documenters,
"transient-for", window,
Expand Down

0 comments on commit 41f7c73

Please sign in to comment.