summaryrefslogtreecommitdiff
path: root/plugins/gtkui/trkproperties.c
diff options
context:
space:
mode:
authorGravatar waker <wakeroid@gmail.com>2011-04-01 20:14:09 +0200
committerGravatar waker <wakeroid@gmail.com>2011-04-01 20:14:30 +0200
commit8fb55282007c5f68ea58220eb3b7d085f36d11c7 (patch)
treeee17bdfbf41c590ef048f2a6975d77054ce9d22c /plugins/gtkui/trkproperties.c
parent7cf850496076a2c95eb97ce9a6350d00211a1f4a (diff)
don't show "multiple items" in track properties in 2nd page
Diffstat (limited to 'plugins/gtkui/trkproperties.c')
-rw-r--r--plugins/gtkui/trkproperties.c2
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);