From 01edf2a241dc4d67c2e9a2965173c99fcdb14bb6 Mon Sep 17 00:00:00 2001 From: yuanho Date: Fri, 7 Jun 2024 10:27:26 -0600 Subject: [PATCH] changed doMakeSmoothingWidget() api to protected in order to allow the other control class to has inner class that can also invoke this api independently. --- src/ucar/unidata/idv/control/DisplayControlImpl.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ucar/unidata/idv/control/DisplayControlImpl.java b/src/ucar/unidata/idv/control/DisplayControlImpl.java index 4127c7d77..5e3cf90c0 100644 --- a/src/ucar/unidata/idv/control/DisplayControlImpl.java +++ b/src/ucar/unidata/idv/control/DisplayControlImpl.java @@ -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");