Remove GUI-side LADSPA author-name tweaks.
authorRobin Gareus <robin@gareus.org>
Tue, 30 Jan 2018 18:12:47 +0000 (19:12 +0100)
committerRobin Gareus <robin@gareus.org>
Tue, 30 Jan 2018 18:52:13 +0000 (19:52 +0100)
gtk2_ardour/plugin_selector.cc

index 93a17f260c290a22abf56787babe7403d15e6c77..80dd1da5728079dad8bce0bdae218cb9fe5a3fc5 100644 (file)
@@ -1081,26 +1081,12 @@ PluginSelector::create_by_creator_menu (ARDOUR::PluginInfoList& all_plugs)
                if (manager.get_status (*i) == PluginManager::Hidden) continue;
 
                string creator = (*i)->creator;
-               string::size_type pos = 0;
-
-               if ((*i)->type == ARDOUR::LADSPA) {
-                       /* stupid LADSPA creator strings */
-#ifdef PLATFORM_WINDOWS
-                       while (pos < creator.length() && creator[pos] > -2 && creator[pos] < 256 && (isalnum (creator[pos]) || isspace (creator[pos]))) ++pos;
-#else
-                       while (pos < creator.length() && (isalnum (creator[pos]) || isspace (creator[pos]))) ++pos;
-#endif
-               } else {
-                       pos = creator.length ();
-               }
 
                /* If there were too few characters to create a
                 * meaningful name, mark this creator as 'Unknown'
                 */
-               if (creator.length() < 2 || pos < 3) {
+               if (creator.length() < 2) {
                        creator = "Unknown";
-               } else{
-                       creator = creator.substr (0, pos);
                }
 
                SubmenuMap::iterator x;