Make default tone eq. regularization consistent

Use 0 for the initial and reset value, which is the same as the details
in the local adjustments version.
This commit is contained in:
Lawrence Lee
2022-06-30 21:58:10 -07:00
parent 38d85581df
commit a13c8a5a47
2 changed files with 2 additions and 2 deletions

View File

@@ -55,7 +55,7 @@ ToneEqualizer::ToneEqualizer(): FoldableToolPanel(this, "toneequalizer", M("TP_T
pack_start(*pivot);
pack_start(*Gtk::manage(new Gtk::HSeparator()));
regularization = Gtk::manage(new Adjuster(M("TP_TONE_EQUALIZER_DETAIL"), -5, 5, 1, 5));
regularization = Gtk::manage(new Adjuster(M("TP_TONE_EQUALIZER_DETAIL"), -5, 5, 1, 0));
regularization->setAdjusterListener(this);
pack_start(*regularization);