Fix quantize threshold setting

Signed-off-by: Asahi Lina <lina@asahilina.net>
This commit is contained in:
Asahi Lina 2023-09-09 19:12:21 +09:00
parent 577918dc07
commit ca25b5c841
1 changed files with 1 additions and 1 deletions

View File

@ -194,5 +194,5 @@ QuantizeDialog::strength () const
Temporal::Beats
QuantizeDialog::threshold () const
{
return Temporal::Beats::from_double (threshold_adjustment.get_value ());
return Temporal::Beats::ticks (threshold_adjustment.get_value ());
}