From ebe389479beb8592e8bd4d2f7b72aef1792418fd Mon Sep 17 00:00:00 2001 From: falkTX Date: Wed, 15 Jul 2026 11:58:15 +0200 Subject: [PATCH 1/2] Easier rebuilds Signed-off-by: falkTX --- Makefile | 4 +--- dep/dpf | 2 +- 2 files changed, 2 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index a91c0c6..b258b0f 100644 --- a/Makefile +++ b/Makefile @@ -8,9 +8,7 @@ PREGEN = $(PLUGINS:%=%/plugin/source) all: build build: pregen - $(foreach p, $(PLUGINS), $(MAKE) -C $(p);) - mkdir bin - $(foreach p, $(PLUGINS), mv $(p)/bin/* bin/;) + $(foreach p, $(PLUGINS), $(MAKE) -C $(p) DPF_BUILD_DIR=$(CURDIR)/build DPF_TARGET_DIR=$(CURDIR)/bin;) pregen: $(PREGEN) diff --git a/dep/dpf b/dep/dpf index 73d3c23..9be7be4 160000 --- a/dep/dpf +++ b/dep/dpf @@ -1 +1 @@ -Subproject commit 73d3c231a9e6a772e1e401384c05dc94167944df +Subproject commit 9be7be4834143596d98f31be63c823bb60023a0b From d8fd63e2407955b950ddc43dbe3467b13b005863 Mon Sep 17 00:00:00 2001 From: falkTX Date: Wed, 15 Jul 2026 12:06:07 +0200 Subject: [PATCH 2/2] Remove useless UI constructor Signed-off-by: falkTX --- override/HeavyDPF_WSTD_MSEQ_UI.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/override/HeavyDPF_WSTD_MSEQ_UI.cpp b/override/HeavyDPF_WSTD_MSEQ_UI.cpp index d1e6061..2a83ce5 100644 --- a/override/HeavyDPF_WSTD_MSEQ_UI.cpp +++ b/override/HeavyDPF_WSTD_MSEQ_UI.cpp @@ -45,7 +45,6 @@ class ImGuiPluginUI : public UI The UI should be initialized to a default state that matches the plugin side. */ ImGuiPluginUI() - : UI(DISTRHO_UI_DEFAULT_WIDTH, DISTRHO_UI_DEFAULT_HEIGHT) { setGeometryConstraints(DISTRHO_UI_DEFAULT_WIDTH, DISTRHO_UI_DEFAULT_HEIGHT, true);