mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
Minor tweaks to column headers
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
3a6c1f767d
commit
43960a70a6
1 changed files with 16 additions and 3 deletions
19
divelist.c
19
divelist.c
|
@ -204,7 +204,7 @@ static void sac_data_func(GtkTreeViewColumn *col,
|
|||
sac = value / 1000.0;
|
||||
switch (output_units.volume) {
|
||||
case LITER:
|
||||
fmt = "%4.0f";
|
||||
fmt = "%4.1f";
|
||||
break;
|
||||
case CUFT:
|
||||
fmt = "%4.2f";
|
||||
|
@ -341,14 +341,27 @@ void update_dive_list_units(struct DiveList *dive_list)
|
|||
|
||||
switch (output_units.length) {
|
||||
case METERS:
|
||||
unit = "m";
|
||||
unit = "max/m";
|
||||
break;
|
||||
case FEET:
|
||||
unit = "ft";
|
||||
unit = "max/ft";
|
||||
break;
|
||||
}
|
||||
gtk_tree_view_column_set_title(dive_list->depth, unit);
|
||||
|
||||
switch (output_units.temperature) {
|
||||
case CELSIUS:
|
||||
unit = "degC";
|
||||
break;
|
||||
case FAHRENHEIT:
|
||||
unit = "degF";
|
||||
break;
|
||||
case KELVIN:
|
||||
unit = "Kelvin";
|
||||
break;
|
||||
}
|
||||
gtk_tree_view_column_set_title(dive_list->temperature, unit);
|
||||
|
||||
gtk_tree_model_foreach(model, set_one_dive, NULL);
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue