Skip to content

Commit

Permalink
changed doMakeSmoothingWidget() api to protected in order to allow th…
Browse files Browse the repository at this point in the history
…e other control class

to has inner class that can also invoke this api independently.
  • Loading branch information
yuanho committed Jun 7, 2024
1 parent 2453ac0 commit 01edf2a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ucar/unidata/idv/control/DisplayControlImpl.java
Original file line number Diff line number Diff line change
Expand Up @@ -12391,7 +12391,7 @@ protected void applySmoothing() throws VisADException, RemoteException {}
*
* @return the smoothing widget
*/
private JComponent doMakeSmoothingWidget() {
protected JComponent doMakeSmoothingWidget() {
sww = new ValueSliderWidget(
this, 1, 19, "smoothingFactor", "Factor", 1.0f, true,
"Amount of smoothing or radius in grid units (larger number = greater smoothing");
Expand Down

0 comments on commit 01edf2a

Please sign in to comment.