From e8c5bc8d7346a8d003fb3b763fc32340588e1098 Mon Sep 17 00:00:00 2001 From: Matthias Clasen Date: Sat, 29 Aug 2015 03:12:59 -0400 Subject: [PATCH] accel label: Remove unneeded spaces Having these extra spaces in the accel string is a bit awkward, since they will be included in text decorations such as underlines. Removing them has no visible effect. --- gtk/gtkaccellabel.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/gtk/gtkaccellabel.c b/gtk/gtkaccellabel.c index 2b9cb77321..95b0043099 100644 --- a/gtk/gtkaccellabel.c +++ b/gtk/gtkaccellabel.c @@ -962,12 +962,10 @@ gtk_accel_label_refetch (GtkAccelLabel *accel_label) if (have_accel) { GtkAccelLabelClass *klass; - gchar *tmp; klass = GTK_ACCEL_LABEL_GET_CLASS (accel_label); - tmp = _gtk_accel_label_class_get_accelerator_label (klass, accel_key, accel_mods); - accel_label->priv->accel_string = g_strconcat (" ", tmp, NULL); - g_free (tmp); + accel_label->priv->accel_string = + _gtk_accel_label_class_get_accelerator_label (klass, accel_key, accel_mods); } else