aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--extension.js3
1 files changed, 1 insertions, 2 deletions
diff --git a/extension.js b/extension.js
index 7e25c6f..d54c39f 100644
--- a/extension.js
+++ b/extension.js
@@ -11,8 +11,7 @@ function OnScreenKeyboardButton() {
OnScreenKeyboardButton.prototype = {
_init: function() {
- label = GLib.markup_escape_text('Keyboard', -1);
- this.actor = new St.Button ({ label: label });
+ this.actor = new St.Button ({ label: 'Keyboard' });
this.actor.connect("clicked", Lang.bind(this, this._toggleShowOnScreenKeyboard));
},