From: Dirk Hohndel Date: Tue, 20 Sep 2011 16:56:46 +0000 (-0700) Subject: Minor tweaks to column headers X-Git-Url: http://git.tdb.fi/?a=commitdiff_plain;h=43960a70a6dafea5e2d05efac290283c726fb028;hp=-c;p=ext%2Fsubsurface.git Minor tweaks to column headers Signed-off-by: Dirk Hohndel --- 43960a70a6dafea5e2d05efac290283c726fb028 diff --git a/divelist.c b/divelist.c index 3b84079..eb6e848 100644 --- a/divelist.c +++ b/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); }