summaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
authorGravatar Alexey Yakovenko <wakeroid@gmail.com>2010-03-21 18:27:26 +0100
committerGravatar Alexey Yakovenko <wakeroid@gmail.com>2010-03-21 18:27:26 +0100
commit850552d6b5bad71db6bdfd11d4de197224d9d3b0 (patch)
tree2ccf1a2b44e0dcebfaf257e2d2db3ca54eb7f28b /plugins
parent9762e04a27260222fd3f3dd71188db471d405506 (diff)
fixed name of zero_order_hold converter in settings window
Diffstat (limited to 'plugins')
-rw-r--r--plugins/gtkui/deadbeef.glade2
-rw-r--r--plugins/gtkui/interface.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/plugins/gtkui/deadbeef.glade b/plugins/gtkui/deadbeef.glade
index babfbdb3..28252d9e 100644
--- a/plugins/gtkui/deadbeef.glade
+++ b/plugins/gtkui/deadbeef.glade
@@ -2585,7 +2585,7 @@ Example: %a - %t [%l]</property>
<property name="items" translatable="yes">sinc_best_quality
sinc_medium_quality
sinc_fastest
-sinc_zero_order_hold
+zero_order_hold
linear</property>
<property name="add_tearoffs">False</property>
<property name="focus_on_click">True</property>
diff --git a/plugins/gtkui/interface.c b/plugins/gtkui/interface.c
index 1662aba8..fc877db3 100644
--- a/plugins/gtkui/interface.c
+++ b/plugins/gtkui/interface.c
@@ -1701,7 +1701,7 @@ create_prefwin (void)
gtk_combo_box_append_text (GTK_COMBO_BOX (pref_src_quality), "sinc_best_quality");
gtk_combo_box_append_text (GTK_COMBO_BOX (pref_src_quality), "sinc_medium_quality");
gtk_combo_box_append_text (GTK_COMBO_BOX (pref_src_quality), "sinc_fastest");
- gtk_combo_box_append_text (GTK_COMBO_BOX (pref_src_quality), "sinc_zero_order_hold");
+ gtk_combo_box_append_text (GTK_COMBO_BOX (pref_src_quality), "zero_order_hold");
gtk_combo_box_append_text (GTK_COMBO_BOX (pref_src_quality), "linear");
hbox10 = gtk_hbox_new (FALSE, 8);