diff options
-rw-r--r-- | src/ui/metaaccellabel.c | 4 | ||||
-rw-r--r-- | src/ui/metaaccellabel.h | 1 |
2 files changed, 1 insertions, 4 deletions
diff --git a/src/ui/metaaccellabel.c b/src/ui/metaaccellabel.c index 8e6f2a40..d79c10af 100644 --- a/src/ui/metaaccellabel.c +++ b/src/ui/metaaccellabel.c @@ -129,7 +129,6 @@ meta_accel_label_class_init (MetaAccelLabelClass *class) class->mod_name_mod5 = g_strdup (_("Mod5")); class->mod_separator = g_strdup ("+"); - class->accel_seperator = g_strdup (" / "); class->latin1_to_char = TRUE; } @@ -343,8 +342,7 @@ meta_accel_label_update (MetaAccelLabel *accel_label) g_free (accel_label->accel_string); accel_label->accel_string = NULL; - gstring = g_string_new (accel_label->accel_string); - g_string_append (gstring, gstring->len ? class->accel_seperator : " "); + gstring = g_string_new (" "); if (accel_label->accel_mods & META_VIRTUAL_SHIFT_MASK) { diff --git a/src/ui/metaaccellabel.h b/src/ui/metaaccellabel.h index 0e1eac9a..327f5be9 100644 --- a/src/ui/metaaccellabel.h +++ b/src/ui/metaaccellabel.h @@ -79,7 +79,6 @@ struct _MetaAccelLabelClass gchar *mod_name_mod4; gchar *mod_name_mod5; gchar *mod_separator; - gchar *accel_seperator; guint latin1_to_char : 1; /* Padding for future expansion */ |