-
Notifications
You must be signed in to change notification settings - Fork 44
Open
Description
If Vu Value is not received for a certain period of time, UF8's level meter will turns off.
The level meter may not display correctly in certain situations, such as Pads sound.
bitwig-extensions/src/main/java/com/bitwig/extensions/controllers/mcu/bindings/VuMeterBinding.java
Lines 23 to 30 in 7174bac
| private void updateVuValue(final int value) { | |
| if (isActive() && value != lastValue) { | |
| getTarget().sendVuUpdate(index, value); | |
| } | |
| lastValue = value; | |
| } | |
I modified like this:
- remove
&& value != lastValue
private void updateVuValue(final int value) {
if (isActive()) {
getTarget().sendVuUpdate(index, value);
}
lastValue = value;
} Bitwig_VU-.-1080P-30P.mp4
- update 2024/04/14 : I created a Pull Request.
SSL UF8 - Fix VU Meter - Avoid checking the Last Value in updateVuValue #86 (comment)
Metadata
Metadata
Assignees
Labels
No labels