diff options
| author | Sam Anthony <sam@samanthony.xyz> | 2025-03-01 13:25:11 -0500 |
|---|---|---|
| committer | Sam Anthony <sam@samanthony.xyz> | 2025-03-01 13:25:11 -0500 |
| commit | 8beee1dcf1baed84e4c783e2e6e81cfa70440481 (patch) | |
| tree | ee6be7edff79fc3c249bcac6464aeed046b665e7 /main.c | |
| parent | e374704b245fa8781c56f4d3e35ad9e93f42ae9c (diff) | |
| download | volute-8beee1dcf1baed84e4c783e2e6e81cfa70440481.zip | |
format numbers
Diffstat (limited to 'main.c')
| -rw-r--r-- | main.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -243,14 +243,14 @@ volume_flow_rate_row(mu_Context *ctx, UI *ui) { mu_layout_row(ctx, 0, NULL, 0); mu_layout_width(ctx, LABEL_WIDTH); - mu_label(ctx, "volume flow rate"); + mu_label(ctx, "Volume flow rate:"); mu_layout_width(ctx, UNIT_WIDTH); if (w_select(ctx, &ui->volume_flow_rate_unit) & MU_RES_CHANGE) { set_all_volume_flow_rate(ui); } mu_layout_width(ctx, FIELD_WIDTH); for (i = 0; i < ui->npoints; i++) { - w_label(ctx, ui->volume_flow_rate[i]); + w_number(ctx, ui->volume_flow_rate[i]); } } |