From b0a197f8265fdc5c15b6e55bed125a34a5da78d0 Mon Sep 17 00:00:00 2001 From: Bruno Lopes Date: Mon, 29 Sep 2025 07:32:12 -0300 Subject: [PATCH] app: Move "Documentation" link one line up over (community) "Tutorials" Users were thinking the tutorials are some kind of official docs, but they are not maintained as the official GIMP help website, they are more like informal documentation about GIMP made public. Let's clarify this reordering the buttons. (cherry picked from commit 789af76a32df0cbf43d58199ce2d756ff8861602) --- app/dialogs/welcome-dialog.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/app/dialogs/welcome-dialog.c b/app/dialogs/welcome-dialog.c index 29b8a0db15..bbce9c9497 100644 --- a/app/dialogs/welcome-dialog.c +++ b/app/dialogs/welcome-dialog.c @@ -467,16 +467,16 @@ welcome_dialog_create_welcome_page (Gimp *gimp, /* "globe with meridians" emoticone in UTF-8. */ "\xf0\x9f\x8c\x90", _("GIMP website"), "https://www.gimp.org/"); - welcome_add_link (GTK_GRID (grid), 0, &row, - /* "graduation cap" emoticone in UTF-8. */ - "\xf0\x9f\x8e\x93", - _("Tutorials"), - "https://www.gimp.org/tutorials/"); welcome_add_link (GTK_GRID (grid), 0, &row, /* "open book" emoticone in UTF-8. */ "\xf0\x9f\x93\x96", _("Documentation"), "https://docs.gimp.org/"); + welcome_add_link (GTK_GRID (grid), 0, &row, + /* "graduation cap" emoticone in UTF-8. */ + "\xf0\x9f\x8e\x93", + _("Community Tutorials"), + "https://www.gimp.org/tutorials/"); /* XXX: should we add API docs for plug-in developers once it's * properly set up? */