summaryrefslogtreecommitdiff
path: root/plugins/gtkui/trkproperties.c
diff options
context:
space:
mode:
authorGravatar waker <wakeroid@gmail.com>2012-09-04 21:36:14 +0200
committerGravatar waker <wakeroid@gmail.com>2012-09-04 21:36:14 +0200
commita9b14cad4a26ad0ab03e369f0d2b6a0052d64955 (patch)
tree61e28d92ddd619ef1994d3301892175e24c839f1 /plugins/gtkui/trkproperties.c
parent9adacb6b55edd45ab50fdbef7fad923d63efb563 (diff)
gtkui: fixed wrong dialog title when adding new field to track metadata
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 560f5fbc..089b3bca 100644
--- a/plugins/gtkui/trkproperties.c
+++ b/plugins/gtkui/trkproperties.c
@@ -640,7 +640,7 @@ on_add_field_activate (GtkMenuItem *menuitem,
}
GtkWidget *dlg = create_entrydialog ();
gtk_dialog_set_default_response (GTK_DIALOG (dlg), GTK_RESPONSE_OK);
- gtk_window_set_title (GTK_WINDOW (dlg), _("Edit playlist"));
+ gtk_window_set_title (GTK_WINDOW (dlg), _("Field name"));
GtkWidget *e;
e = lookup_widget (dlg, "title_label");
gtk_label_set_text (GTK_LABEL(e), _("Name:"));