summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2021-11-05 15:26:27 -0400
committerMatthias Clasen <mclasen@redhat.com>2021-11-08 14:17:42 -0500
commit895dc94cc9e7c0c8737440bf912166e7ef6206ff (patch)
tree7720e98d3023c94cf3083ce3024bf2fec925ef24
parent9f9479a50fe9dac5a17b1026d665b7c5b87d1f75 (diff)
downloadgtk+-895dc94cc9e7c0c8737440bf912166e7ef6206ff.tar.gz
gtk-demo: Avoid a missing icon
The hypertext demo was using an icon that we no longer include in our embedded icon theme. Use a different one.
-rw-r--r--demos/gtk-demo/hypertext.c7
1 files changed, 3 insertions, 4 deletions
diff --git a/demos/gtk-demo/hypertext.c b/demos/gtk-demo/hypertext.c
index 63af29d654..b38f474c33 100644
--- a/demos/gtk-demo/hypertext.c
+++ b/demos/gtk-demo/hypertext.c
@@ -94,13 +94,12 @@ show_page (GtkTextView *text_view,
gtk_text_buffer_insert (buffer, &iter, " can easily be realized with ", -1);
insert_link (buffer, &iter, "tags", 2);
gtk_text_buffer_insert (buffer, &iter, ".\n", -1);
- gtk_text_buffer_insert (buffer, &iter,
- "Of course you can also embed Emoji 😋, "
- "icons ", -1);
+ gtk_text_buffer_insert (buffer, &iter, "Of course you can also embed Emoji 😋, ", -1);
+ gtk_text_buffer_insert (buffer, &iter, "icons ", -1);
theme = gtk_icon_theme_get_for_display (gtk_widget_get_display (GTK_WIDGET (text_view)));
icon = gtk_icon_theme_lookup_icon (theme,
- "microphone-sensitivity-high-symbolic",
+ "eye-not-looking-symbolic",
NULL,
16,
1,