From 648a7bceccb2369e32f81161677efeddb13489bb Mon Sep 17 00:00:00 2001 From: reuk Date: Tue, 23 Sep 2025 11:48:34 +0100 Subject: [PATCH] LV2 Host: Avoid checking for noUserResize in UI extension data --- .../juce_audio_processors/format_types/juce_LV2PluginFormat.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/modules/juce_audio_processors/format_types/juce_LV2PluginFormat.cpp b/modules/juce_audio_processors/format_types/juce_LV2PluginFormat.cpp index 1e6725e62b..aaa49bbcde 100644 --- a/modules/juce_audio_processors/format_types/juce_LV2PluginFormat.cpp +++ b/modules/juce_audio_processors/format_types/juce_LV2PluginFormat.cpp @@ -847,7 +847,6 @@ private: }; return uiDescriptor->hasExtensionData (world, LV2_UI__resize) - && ! uiDescriptor->hasExtensionData (world, LV2_UI__noUserResize) && noneOf (requiredFeatures.values, uriMatches) && noneOf (optionalFeatures.values, uriMatches); }