diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index a25ff66..9f7739e 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -61,12 +61,16 @@ jobs: strategy: matrix: target: [macos-intel, macos-universal] - runs-on: macos-13 + runs-on: macos-14 steps: - uses: actions/checkout@v4 with: submodules: recursive + - uses: innodatalabs/action-pip-conf@1.0.0 + with: + pip-conf: "[global]\nbreak-system-packages = true" + - name: Import APP Certificates uses: apple-actions/import-codesign-certs@v2 with: diff --git a/override/HeavyDPF_WSTD_EQ_UI.cpp b/override/HeavyDPF_WSTD_EQ_UI.cpp index 7f39da3..89dc074 100644 --- a/override/HeavyDPF_WSTD_EQ_UI.cpp +++ b/override/HeavyDPF_WSTD_EQ_UI.cpp @@ -22,8 +22,6 @@ class ImGuiPluginUI : public UI float flow = 0.0f; float fmid = 0.0f; - ResizeHandle fResizeHandle; - // ---------------------------------------------------------------------------------------------------------------- public: @@ -32,11 +30,8 @@ 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, true), - fResizeHandle(this) + : UI(DISTRHO_UI_DEFAULT_WIDTH, DISTRHO_UI_DEFAULT_HEIGHT) { - setGeometryConstraints(DISTRHO_UI_DEFAULT_WIDTH, DISTRHO_UI_DEFAULT_HEIGHT, true); - ImGuiIO& io(ImGui::GetIO()); ImFontConfig fc; @@ -49,8 +44,6 @@ class ImGuiPluginUI : public UI io.Fonts->AddFontFromMemoryCompressedTTF((void*)veramobd_compressed_data, veramobd_compressed_size, 21.0f * getScaleFactor(), &fc); io.Fonts->Build(); io.FontDefault = io.Fonts->Fonts[1]; - - fResizeHandle.hide(); } protected: