[recipes] Use different glyphs to indicate images and timers



commit 71b2a209e650cc04dd943d9055c9beaf6bc6c1e3
Author: Matthias Clasen <mclasen redhat com>
Date:   Wed Jul 26 08:02:59 2017 -0400

    Use different glyphs to indicate images and timers
    
    The glyphs we were using tend to come in colored variants.
    Once our font rendering stack starts supporting color glyphs,
    that will look weird/wrong. So use different glyphs that
    don't have this problem.

 src/gr-details-page.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)
---
diff --git a/src/gr-details-page.c b/src/gr-details-page.c
index 426b3ae..5b20849 100644
--- a/src/gr-details-page.c
+++ b/src/gr-details-page.c
@@ -576,12 +576,12 @@ process_instructions (const char *instructions)
                         g_string_append_printf (s, _("Timer: %s"), str);
                         if (step->title)
                                 g_string_append_printf (s, "\n%s", step->title);
-                        g_string_append (s, "\">♢</a>");
+                        g_string_append (s, "\">◇</a>");
                 }
                 else if (step->image != -1) {
                         g_string_append_printf (s, "<a href=\"image:%d\" title=\"", step->image);
                         g_string_append_printf (s, _("Image %d"), step->image + 1);
-                        g_string_append (s, "\">♦</a>");
+                        g_string_append (s, "\">◆</a>");
                 }
 
                 escaped = g_markup_escape_text (step->text, -1);


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]