[recipes] details page: Use less fancy glyphs



commit ddb1a52e7c4999bb765bb83fa6d9c186a726b128
Author: Matthias Clasen <mclasen redhat com>
Date:   Tue Feb 28 22:03:37 2017 -0500

    details page: Use less fancy glyphs
    
    The glyphs we were using for timers and images don't display
    on OS X (at least with a pango thats built by jhbuild), so
    lets use simpler ones that work.

 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 3880412..165514b 100644
--- a/src/gr-details-page.c
+++ b/src/gr-details-page.c
@@ -583,12 +583,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>");
                 }
 
                 g_string_append (s, step->text);


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