Skip to content

Commit

Permalink
-reverted setValue: removed isReadOnly as parameter.
Browse files Browse the repository at this point in the history
  -- Allows for more flexability when slider is updated.  The caller 
  can do something based on change event and utilize isReadonly within
their change handler.
  • Loading branch information
mhavi committed Jan 14, 2015
1 parent 63f5422 commit bb9e787
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ public Integer getValue() {

@Override
public void setValue(Integer value) {
setValue(value, isReadOnly());
setValue(value, true);
}

@Override
Expand Down

0 comments on commit bb9e787

Please sign in to comment.