diff options
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/gtkui/trkproperties.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/gtkui/trkproperties.c b/plugins/gtkui/trkproperties.c index 4ea85c18..0a978661 100644 --- a/plugins/gtkui/trkproperties.c +++ b/plugins/gtkui/trkproperties.c @@ -257,7 +257,7 @@ static const char *hc_props[] = { void add_field (GtkListStore *store, const char *key, const char *title, int is_prop) { // get value to edit - const char *mult = _("[Multiple values] "); + const char *mult = is_prop ? "" : _("[Multiple values] "); char val[1000]; size_t ml = strlen (mult); memcpy (val, mult, ml+1); |