]> err.no Git - libchamplain/commitdiff
Fix markup in Clutter 1.0
authorPierre-Luc Beaudoin <pierre-luc@pierlux.com>
Thu, 30 Jul 2009 23:13:26 +0000 (19:13 -0400)
committerPierre-Luc Beaudoin <pierre-luc@pierlux.com>
Mon, 3 Aug 2009 22:16:30 +0000 (18:16 -0400)
The markup property has to be set after the text for it to work

champlain/champlain-marker.c

index 712b67168bab23f9b404b19b5c417e8dc6455324..bc6c5189b176fab3e33848998803cf1cd9bbbda4 100644 (file)
@@ -579,7 +579,6 @@ draw_marker (ChamplainMarker *marker)
       }
 
       label = CLUTTER_TEXT (priv->text_actor);
-      clutter_text_set_use_markup (label, priv->use_markup);
       clutter_text_set_font_name (label, priv->font_name);
       clutter_text_set_text (label, priv->text);
       clutter_text_set_line_alignment (label, priv->alignment);
@@ -587,6 +586,7 @@ draw_marker (ChamplainMarker *marker)
       clutter_text_set_line_wrap_mode (label, priv->wrap_mode);
       clutter_text_set_ellipsize (label, priv->ellipsize);
       clutter_text_set_attributes (label, priv->attributes);
+      clutter_text_set_use_markup (label, priv->use_markup);
 
       height = clutter_actor_get_height (priv->text_actor);
       if (priv->image != NULL)