diff options
author | Alessandro Ghedini <al3xbio@gmail.com> | 2012-01-27 21:34:49 +0100 |
---|---|---|
committer | Alessandro Ghedini <al3xbio@gmail.com> | 2012-01-27 21:34:49 +0100 |
commit | 2f94591b0eca0f910484a8073403cf71f274d974 (patch) | |
tree | 1eb06c396330950fdfd95fc3358e2e3055fd1e10 /src/utilities/trigger.vala | |
parent | d67c54cea574bf6bb014d3e2412bd64c7ced2073 (diff) | |
parent | a824c3e5bdab686901b02667609282e7d596a6af (diff) |
Merge commit 'upstream/0.4.2'
Diffstat (limited to 'src/utilities/trigger.vala')
-rw-r--r-- | src/utilities/trigger.vala | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/src/utilities/trigger.vala b/src/utilities/trigger.vala index 4b6167b..854cbb4 100644 --- a/src/utilities/trigger.vala +++ b/src/utilities/trigger.vala @@ -182,11 +182,7 @@ public class Trigger : GLib.Object { this.label = Gtk.accelerator_get_label(keysym, this.modifiers); } - this.label = this.label.replace("<", "<"); - this.label = this.label.replace(">", ">"); - this.label = this.label.replace("&", "&"); - - this.label_with_specials = this.label; + this.label_with_specials = GLib.Markup.escape_text(this.label); if (this.turbo && this.delayed && this.centered) this.label_with_specials += (" <small><span weight='light'>[ " + _("Turbo") + " | " + _("Delayed") + " | " + _("Centered") + " ]</span></small>"); |