summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2022-05-27 08:43:06 -0400
committerMatthias Clasen <mclasen@redhat.com>2022-05-27 08:43:06 -0400
commitbcad3051368c63e95d20e922971795e22c5ac22a (patch)
treeea80a8f5ac0d322f68f56639cb6d792961675e6f
parent23f92ca1c25e7e2fb7f8ae8097c6398a3a3603dc (diff)
downloadgtk+-bcad3051368c63e95d20e922971795e22c5ac22a.tar.gz
Make the formatted link more neutral
There have been complaints about company names in our demos. Lets use something else. Part of: #4716
-rw-r--r--demos/gtk-demo/links.c8
1 files changed, 3 insertions, 5 deletions
diff --git a/demos/gtk-demo/links.c b/demos/gtk-demo/links.c
index 8655b8a23a..63ac1d0c7f 100644
--- a/demos/gtk-demo/links.c
+++ b/demos/gtk-demo/links.c
@@ -66,11 +66,9 @@ do_links (GtkWidget *do_widget)
"as hyperlinks, which can be clicked "
"or activated via <a href=\"keynav\">keynav</a> "
"and they work fine with other markup, like when "
- "searching on <a href=\"http://www.google.com/\">"
- "<span color=\"#0266C8\">G</span><span color=\"#F90101\">o</span>"
- "<span color=\"#F2B50F\">o</span><span color=\"#0266C8\">g</span>"
- "<span color=\"#00933B\">l</span><span color=\"#F90101\">e</span>"
- "</a>.");
+ "linking to <a href=\"http://www.flathub.org/\"><b>"
+ "<span letter_spacing=\"1024\" underline=\"none\" color=\"pink\" background=\"darkslategray\">Flathub</span>"
+ "</b></a>.");
gtk_label_set_use_markup (GTK_LABEL (label), TRUE);
gtk_label_set_max_width_chars (GTK_LABEL (label), 40);
gtk_label_set_wrap (GTK_LABEL (label), TRUE);