1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

LV2 Client: Always declare resize and noUserResize in extensionData, even if only one will be used

This commit is contained in:
reuk 2022-04-27 13:33:27 +01:00
parent b88b8f13c7
commit 215d5955f9
No known key found for this signature in database
GPG key ID: 9ADCD339CFC98A11

View file

@ -1290,7 +1290,8 @@ private:
"\t\tui:idleInterface ,\n"
#endif
"\t\topts:interface ,\n"
"\t\t" << resizeFeatureString << " ;\n"
"\t\tui:noUserResize ,\n" // resize and noUserResize are always present in the extension data array
"\t\tui:resize ;\n"
"\n"
"\tlv2:requiredFeature\n"
#if JUCE_LINUX || JUCE_BSD