Signed-off-by: falkTX <falktx@falktx.com>master
@@ -327,7 +327,7 @@ jobs: | |||||
done | done | ||||
- name: Test VST2 plugins | - name: Test VST2 plugins | ||||
run: | | run: | | ||||
for p in $(ls bin/ | grep -e vst.so -e '.*\.vst/.*\.so'); do \ | |||||
for p in $(find bin/ | grep -e vst.so -e '.*\.vst/.*\.so'); do \ | |||||
env CARLA_BRIDGE_DUMMY=1 CARLA_BRIDGE_TESTING=native \ | env CARLA_BRIDGE_DUMMY=1 CARLA_BRIDGE_TESTING=native \ | ||||
valgrind \ | valgrind \ | ||||
--error-exitcode=255 \ | --error-exitcode=255 \ | ||||
@@ -1 +1 @@ | |||||
Subproject commit 923664009361100bba378c6cfb94d68e39575476 | |||||
Subproject commit 5d7fd17f6a634ccd648a264743319c145928a27c |
@@ -1,6 +1,6 @@ | |||||
/* | /* | ||||
* DISTRHO ProM Plugin | * DISTRHO ProM Plugin | ||||
* Copyright (C) 2015-2021 Filipe Coelho <falktx@falktx.com> | |||||
* Copyright (C) 2015-2022 Filipe Coelho <falktx@falktx.com> | |||||
* | * | ||||
* This program is free software; you can redistribute it and/or | * This program is free software; you can redistribute it and/or | ||||
* modify it under the terms of the GNU Lesser General Public | * modify it under the terms of the GNU Lesser General Public | ||||
@@ -1,6 +1,6 @@ | |||||
/* | /* | ||||
* DISTRHO ProM Plugin | * DISTRHO ProM Plugin | ||||
* Copyright (C) 2015-2021 Filipe Coelho <falktx@falktx.com> | |||||
* Copyright (C) 2015-2022 Filipe Coelho <falktx@falktx.com> | |||||
* | * | ||||
* This program is free software; you can redistribute it and/or | * This program is free software; you can redistribute it and/or | ||||
* modify it under the terms of the GNU Lesser General Public | * modify it under the terms of the GNU Lesser General Public | ||||
@@ -1,6 +1,6 @@ | |||||
/* | /* | ||||
* Resize handle for DPF | * Resize handle for DPF | ||||
* Copyright (C) 2021 Filipe Coelho <falktx@falktx.com> | |||||
* Copyright (C) 2021-2022 Filipe Coelho <falktx@falktx.com> | |||||
* | * | ||||
* Permission to use, copy, modify, and/or distribute this software for any purpose with | * Permission to use, copy, modify, and/or distribute this software for any purpose with | ||||
* or without fee is hereby granted, provided that the above copyright notice and this | * or without fee is hereby granted, provided that the above copyright notice and this | ||||
@@ -45,7 +45,8 @@ public: | |||||
resetArea(); | resetArea(); | ||||
} | } | ||||
/** Set the handle size, minimum 16. */ | |||||
/** Set the handle size, minimum 16. | |||||
* Scale factor is automatically applied on top of this size as needed */ | |||||
void setHandleSize(const uint size) | void setHandleSize(const uint size) | ||||
{ | { | ||||
handleSize = std::max(16u, size); | handleSize = std::max(16u, size); | ||||