Skip to content

Commit

Permalink
Merge pull request #382 from xenharmonic-devs/decimal-dot-in-matrix
Browse files Browse the repository at this point in the history
Use decimal dots in interval matrix for tuning table consistency
  • Loading branch information
frostburn authored Feb 12, 2023
2 parents 9981619 + c9d4677 commit bbd8909
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/views/AnalysisView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,8 @@ function formatMatrixCell(interval: Interval) {
return interval.centsString();
}
if (cellFormat.value === "decimal") {
return interval.decimalString();
// Consistent with tuning table localization.
return interval.decimalString().replace(",", ".");
}
// Monzos are too long.
Expand Down

0 comments on commit bbd8909

Please sign in to comment.