summaryrefslogtreecommitdiff
path: root/plugins/gtkui/trkproperties.c
diff options
context:
space:
mode:
authorGravatar waker <wakeroid@gmail.com>2011-03-20 16:22:15 +0100
committerGravatar waker <wakeroid@gmail.com>2011-03-20 16:22:15 +0100
commit14155df315063b5deafa75153b61113fbc94b058 (patch)
tree2cc917a9e746692fdf9c3d2c510183c0f395ab43 /plugins/gtkui/trkproperties.c
parenta101235c453dd805e6b745d3bd3f2e49aca5a1fc (diff)
fixed deleting metadata fields bug with context menu "remove field"
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 6c11b72b..4ea85c18 100644
--- a/plugins/gtkui/trkproperties.c
+++ b/plugins/gtkui/trkproperties.c
@@ -687,7 +687,7 @@ on_remove_field_activate (GtkMenuItem *menuitem,
}
}
if (types[i]) { // known val, clear
- gtk_list_store_set (store, &iter, 1, "", -1);
+ gtk_list_store_set (store, &iter, 1, "", 3, 0, -1);
}
else {
gtk_list_store_remove (store, &iter);