[gnome-clocks/gnome-3-22] headerbat title should not me escaped



commit 075ac9211e99889ec7d53437167d840fc54ee3a5
Author: Paolo Borelli <pborelli gnome org>
Date:   Sun Oct 9 16:02:31 2016 +0200

    headerbat title should not me escaped
    
    https://bugzilla.gnome.org/show_bug.cgi?id=749983

 src/alarm.vala |    2 +-
 src/world.vala |    4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)
---
diff --git a/src/alarm.vala b/src/alarm.vala
index c2edb79..71062e5 100644
--- a/src/alarm.vala
+++ b/src/alarm.vala
@@ -709,7 +709,7 @@ public class Face : Gtk.Stack, Clocks.Clock {
             content_view.update_header_bar ();
             break;
         case HeaderBar.Mode.STANDALONE:
-            header_bar.title = GLib.Markup.escape_text (ringing_panel.alarm.name);
+            header_bar.title = ringing_panel.alarm.name;
             break;
         default:
             assert_not_reached ();
diff --git a/src/world.vala b/src/world.vala
index c382ce5..dc86bbb 100644
--- a/src/world.vala
+++ b/src/world.vala
@@ -459,8 +459,8 @@ public class Face : Gtk.Stack, Clocks.Clock {
             content_view.update_header_bar ();
             break;
         case HeaderBar.Mode.STANDALONE:
-            header_bar.title = GLib.Markup.escape_text (standalone_location.city_name);
-            header_bar.subtitle = GLib.Markup.escape_text (standalone_location.contry_name);
+            header_bar.title = standalone_location.city_name;
+            header_bar.subtitle = standalone_location.contry_name;
             back_button.show ();
             break;
         default:


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