summaryrefslogtreecommitdiff
path: root/plugins/gtkui/trkproperties.c
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/gtkui/trkproperties.c')
-rw-r--r--plugins/gtkui/trkproperties.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/plugins/gtkui/trkproperties.c b/plugins/gtkui/trkproperties.c
index 74bd3a32..7d46e036 100644
--- a/plugins/gtkui/trkproperties.c
+++ b/plugins/gtkui/trkproperties.c
@@ -196,18 +196,23 @@ on_trackproperties_key_press_event (GtkWidget *widget,
GdkEventKey *event,
gpointer user_data)
{
+#if 0
if (event->keyval == GDK_Escape) {
+ printf ("trkproperties esc\n");
on_trackproperties_delete_event (trackproperties, NULL, NULL);
return TRUE;
}
else if (event->keyval == GDK_Delete) {
+ printf ("trkproperties del\n");
on_remove_field_activate (NULL, NULL);
return FALSE;
}
else if (event->keyval == GDK_Insert) {
+ printf ("trkproperties ins\n");
on_add_field_activate (NULL, NULL);
return TRUE;
}
+#endif
return FALSE;
}