Skip to content

Commit

Permalink
BPM: display value with selected locale in library
Browse files Browse the repository at this point in the history
  • Loading branch information
ronso0 committed Apr 7, 2024
1 parent ac7b2a3 commit bfd6e78
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/library/basetracktablemodel.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -727,7 +727,7 @@ QVariant BaseTrackTableModel::roleValue(
return QString::number(bpm.value(), 'f', 4);
} else {
// custom precision, set in DlgPrefLibrary
return QString::number(bpm.value(), 'f', s_bpmColumnPrecision);
return QLocale().toString(bpm.value(), 'f', s_bpmColumnPrecision);
}
} else {
return QChar('-');
Expand Down

0 comments on commit bfd6e78

Please sign in to comment.