[gnome-clocks] headerbat title should not me escaped
- From: Paolo Borelli <pborelli src gnome org>
- To: commits-list gnome org
- Cc:
- Subject: [gnome-clocks] headerbat title should not me escaped
- Date: Sun, 9 Oct 2016 14:05:30 +0000 (UTC)
commit fd1cd96828fd00186bca882ab6c2c50b38134355
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 cad9e95..257e314 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 386a114..bde9bdf 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]