Last active
December 28, 2015 20:02
-
-
Save david0/86549e9aa58fb91c148f to your computer and use it in GitHub Desktop.
ardour patch for emulating nodelete on OS X
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
diff --git a/gtk2_ardour/lv2_plugin_ui.cc b/gtk2_ardour/lv2_plugin_ui.cc | |
index 20f59b5..b9b382c 100644 | |
--- a/gtk2_ardour/lv2_plugin_ui.cc | |
+++ b/gtk2_ardour/lv2_plugin_ui.cc | |
@@ -438,11 +438,6 @@ LV2PluginUI::lv2ui_free() | |
remove (*_gui_widget); | |
_gui_widget = NULL; | |
} | |
- | |
- if (_inst) { | |
- suil_instance_free((SuilInstance*)_inst); | |
- _inst = NULL; | |
- } | |
} | |
LV2PluginUI::~LV2PluginUI () |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment