This website works better with JavaScript.
Home
Help
Sign In
DISTRHO
/
DPF
mirror of
https://github.com/DISTRHO/DPF
Watch
1
Star
0
Fork
0
Code
Releases
0
Activity
Browse Source
CLAP: Assume UI to be resizable if DISTRHO_UI_USER_RESIZABLE is 1
pull/506/head
falkTX
5 months ago
parent
eb28eec7b7
commit
ef75ef2187
1 changed files
with
3 additions
and
1 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+3
-1
distrho/src/DistrhoPluginCLAP.cpp
+ 3
- 1
distrho/src/DistrhoPluginCLAP.cpp
View File
@@ -306,8 +306,10 @@ public:
#if DISTRHO_UI_USER_RESIZABLE
if (UIExporter* const ui = fUI.get())
return ui->isResizable();
#endif
return true;
#else
return false;
#endif
}
bool getResizeHints(clap_gui_resize_hints_t* const hints) const
Write
Preview
Loading…
Cancel
Save