summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2018-03-19 18:18:35 +0100
committerRobin Gareus <robin@gareus.org>2018-03-19 18:18:35 +0100
commit3ee2c3d632a371381cd9b310b5af69ed6a852253 (patch)
tree7c070181ddc8f7c321986d4a78793ca4a2a15412
parentefbfbb8330b06c6b2d9253c87e270bb708c5fd10 (diff)
Lua is not an acronym
-rw-r--r--gtk2_ardour/plugin_selector.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk2_ardour/plugin_selector.cc b/gtk2_ardour/plugin_selector.cc
index e01f4872ec..6ae76a04c6 100644
--- a/gtk2_ardour/plugin_selector.cc
+++ b/gtk2_ardour/plugin_selector.cc
@@ -211,7 +211,7 @@ PluginSelector::PluginSelector (PluginManager& mgr)
#ifdef LV2_SUPPORT
_fil_type_combo.append_text_item (X_("LV2"));
#endif
- _fil_type_combo.append_text_item (X_("LUA"));
+ _fil_type_combo.append_text_item (X_("Lua"));
_fil_type_combo.append_text_item (X_("LADSPA"));
_fil_type_combo.set_text (_("Show All Formats"));
@@ -434,7 +434,7 @@ PluginSelector::show_this_plugin (const PluginInfoPtr& info, const std::string&
}
#endif
- if (_fil_type_combo.get_text() == X_("LUA") && info->type != Lua) {
+ if (_fil_type_combo.get_text() == X_("Lua") && info->type != Lua) {
return false;
}