Lua is not an acronym
authorRobin Gareus <robin@gareus.org>
Mon, 19 Mar 2018 17:18:35 +0000 (18:18 +0100)
committerRobin Gareus <robin@gareus.org>
Mon, 19 Mar 2018 17:18:35 +0000 (18:18 +0100)
gtk2_ardour/plugin_selector.cc

index e01f4872ecd1e49907d1c865962b854f06b0b2a1..6ae76a04c62ee7e83565ed154da75e10fe9d3054 100644 (file)
@@ -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;
        }