Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
9 changes: 1 addition & 8 deletions override/HeavyDPF_WSTD_EQ_UI.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,6 @@ class ImGuiPluginUI : public UI
float flow = 0.0f;
float fmid = 0.0f;

ResizeHandle fResizeHandle;

// ----------------------------------------------------------------------------------------------------------------

public:
Expand All @@ -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;
Expand All @@ -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:
Expand Down