Cleanup: Fix inconsistent TransformDialog code style

This commit is contained in:
David Robillard 2019-02-19 20:12:42 +01:00
parent 572df2c3bd
commit cb2a501c44

View file

@ -229,15 +229,17 @@ TransformDialog::ValueChooser::source_changed()
} }
double double
TransformDialog::ValueChooser::get_value () const TransformDialog::ValueChooser::get_value() const
{ {
return value_spinner.get_value() + ((target_property == MidiModel::NoteDiffCommand::Channel) ? -1. : 0.); const bool is_channel = target_property == MidiModel::NoteDiffCommand::Channel;
return value_spinner.get_value() + (is_channel ? -1.0 : 0.0);
} }
double double
TransformDialog::ValueChooser::get_max () const TransformDialog::ValueChooser::get_max() const
{ {
return max_spinner.get_value() + ((target_property == MidiModel::NoteDiffCommand::Channel) ? -1. : 0.); const bool is_channel = target_property == MidiModel::NoteDiffCommand::Channel;
return max_spinner.get_value() + (is_channel ? -1.0 : 0.0);
} }
void void