Skip to content

Commit

Permalink
Merge branch 'develop' into feature/rfft
Browse files Browse the repository at this point in the history
dromer committed Nov 18, 2023
2 parents 52272f6 + d9f9648 commit d336fdb
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -8,7 +8,7 @@ Next Release
* Documentation fixes/additions
* Daisy: ability to set samplerate and blocksize
* DPF: enum for UI parameter IDs
* DPF bugfixes: correct input PortGroup names
* DPF bugfixes: correct input PortGroup names; correct UI slider updates
* Cleanup: remove deprecated build.json

0.9.0
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -42,7 +42,7 @@ hvcc has been integrated into several projects and services. This allows to easi

## Requirements

python 3.7 or higher
python 3.7 until 3.11

* `jinja2` (for generator templating)
* `importlib_resources` (for reading static resources)
2 changes: 1 addition & 1 deletion hvcc/generators/c2dpf/templates/HeavyDPF_UI.cpp
Original file line number Diff line number Diff line change
@@ -133,8 +133,8 @@ class ImGuiPluginUI : public UI
if (ImGui::IsItemActivated())
{
editParameter({{v.display|upper}}, true);
setParameterValue({{v.display|upper}}, f{{v_display}});
}
setParameterValue({{v.display|upper}}, f{{v_display}});
}
{%- endif %}
{% endfor %}

0 comments on commit d336fdb

Please sign in to comment.