Skip to content

Commit

Permalink
plugins/echosounder/sidescan/SidescanToolbar: Fix setting normalizati…
Browse files Browse the repository at this point in the history
…on from config popup.
  • Loading branch information
paulosousadias committed Feb 2, 2024
1 parent 2da0386 commit 01e20e9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ public void actionPerformed(ActionEvent e) {
spinTVG.setValue(panel.config.tvgGain);

if (panel.config.normalization != (Double) spinNormalization.getValue())
spinTVG.setValue(panel.config.normalization);
spinNormalization.setValue(panel.config.normalization);
}
});

Expand Down

0 comments on commit 01e20e9

Please sign in to comment.