Skip to content

SSL UF8 - Avoid checking the Last Value in updateVuValue #84

Description

@joeunsoo

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.

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

Metadata

Metadata

Assignees

No one assigned

    Labels

    No labels
    No labels

    Type

    No type

    Fields

    No fields configured for issues without a type.

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions