X-Git-Url: https://main.carlh.net/gitweb/?a=blobdiff_plain;f=libs%2Fgtkmm2ext%2Fauto_spin.cc;h=ba2a3cf76e71e3c7309b2fc090a1b945b38f8f33;hb=d2b8a7f6bdcb66960c387449cfb2877bd896ceeb;hp=0830eca77e6a61232fd426d43fdb63dc87122f67;hpb=d09f6b3016bacbc2871a8946cbb24ad705076509;p=ardour.git diff --git a/libs/gtkmm2ext/auto_spin.cc b/libs/gtkmm2ext/auto_spin.cc index 0830eca77e..ba2a3cf76e 100644 --- a/libs/gtkmm2ext/auto_spin.cc +++ b/libs/gtkmm2ext/auto_spin.cc @@ -33,7 +33,7 @@ const unsigned int AutoSpin::initial_timer_interval = 500; /* msecs */ const unsigned int AutoSpin::timer_interval = 20; /* msecs */ const unsigned int AutoSpin::climb_timer_calls = 5; /* between climbing */ -AutoSpin::AutoSpin (Gtk::Adjustment &adjr, gfloat cr) +AutoSpin::AutoSpin (Gtk::Adjustment &adjr, gfloat cr, bool round_to_steps_yn) : adjustment (adjr), climb_rate (cr) @@ -44,6 +44,7 @@ AutoSpin::AutoSpin (Gtk::Adjustment &adjr, gfloat cr) have_timer = false; need_timer = false; timer_calls = 0; + round_to_steps = round_to_steps_yn; } void @@ -164,7 +165,10 @@ AutoSpin::_timer (void *arg) void AutoSpin::set_value (gfloat value) { - adjustment.set_value (value); + if (round_to_steps) + adjustment.set_value (floor((value / step_increment) + 0.5f) * step_increment); + else + adjustment.set_value (value); } bool @@ -193,7 +197,7 @@ AutoSpin::adjust_value (gfloat increment) } } - adjustment.set_value (val); + set_value(val); return done; } @@ -253,6 +257,8 @@ AutoSpin::set_bounds (gfloat init, gfloat up, gfloat down, bool with_reset) { adjustment.set_upper(up); adjustment.set_lower(down); + + initial = init; adjustment.changed ();