Skip to content

Commit

Permalink
CSSTUDIO-2009 Fix typo.
Browse files Browse the repository at this point in the history
  • Loading branch information
abrahamwolk committed Aug 16, 2023
1 parent 97d751f commit 6395de4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -275,7 +275,7 @@ private void layoutChanged(WidgetProperty<?> property, Object old_value, Object
private void valueChanged(WidgetProperty<?> property, Object old_value, Object new_value)
{
synchronized (meter) { // "synchronized (meter) { ... }" is due to the reading of values from "meter.linearMeter",
// which may otherwise be intreleaved with writes to these values.
// which may otherwise be interleaved with writes to these values.
if (new_value instanceof VDouble ) {
VDouble vDouble = ((VDouble) new_value);
double newValue = vDouble.getValue();
Expand Down

0 comments on commit 6395de4

Please sign in to comment.