commit 9f3069b2f33b8fcb00e43eb713fdbe4143f14096
parent 29510e69f691437840263428ec6921013d2f6856
Author: falkTX <falktx@falktx.com>
Date: Sat, 24 Sep 2022 13:00:27 +0100
Fix VST2 UI size after last changes
Signed-off-by: falkTX <falktx@falktx.com>
Diffstat:
2 files changed, 2 insertions(+), 3 deletions(-)
diff --git a/distrho/src/xaymar-vst2/vst.h b/distrho/src/xaymar-vst2/vst.h
@@ -796,10 +796,10 @@ enum VST_PARAMETER_FLAGS {
|*/
struct vst_rect {
- int16_t left;
int16_t top;
- int16_t right;
+ int16_t left;
int16_t bottom;
+ int16_t right;
};
struct vst_effect {
diff --git a/examples/SendNote/SendNoteExampleUI.cpp b/examples/SendNote/SendNoteExampleUI.cpp
@@ -29,7 +29,6 @@ using DGL_NAMESPACE::Color;
using DGL_NAMESPACE::GraphicsContext;
using DGL_NAMESPACE::Rectangle;
-
// -----------------------------------------------------------------------------------------------------------
class SendNoteExampleUI : public UI