summaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
authorGravatar waker <wakeroid@gmail.com>2012-09-06 20:16:54 +0200
committerGravatar waker <wakeroid@gmail.com>2012-09-06 20:16:54 +0200
commit7a8bedd92f439eca086b1795686c4ec65901f098 (patch)
treedb80086ad547d2d029b41163898679d91b025c20 /plugins
parentc02d39b2e57c06ead8453e9b2452936699d1e34c (diff)
gtkui: fix Del key in tag editor
Diffstat (limited to 'plugins')
-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 089b3bca..8fad64ad 100644
--- a/plugins/gtkui/trkproperties.c
+++ b/plugins/gtkui/trkproperties.c
@@ -194,7 +194,7 @@ on_trackproperties_key_press_event (GtkWidget *widget,
}
else if (event->keyval == GDK_Delete) {
on_remove_field_activate (NULL, NULL);
- return TRUE;
+ return FALSE;
}
else if (event->keyval == GDK_Insert) {
on_add_field_activate (NULL, NULL);