X-Git-Url: https://git.wpitchoune.net/gitweb/?p=psensor.git;a=blobdiff_plain;f=src%2Fui_sensorlist.c;h=9d4b748717e7537b04c321569bc7111ea4c07e68;hp=f9b5fba17092f2517d45c0137bb64c0a62a38e8f;hb=c1e20f2631a1249720e9c75d753eacfcb0f6c7b9;hpb=9f2b7eb5cd9f86d72f63a3956a6088e6f0319070 diff --git a/src/ui_sensorlist.c b/src/ui_sensorlist.c index f9b5fba..9d4b748 100644 --- a/src/ui_sensorlist.c +++ b/src/ui_sensorlist.c @@ -1,5 +1,5 @@ /* - * Copyright (C) 2010-2014 jeanfi@gmail.com + * Copyright (C) 2010-2016 jeanfi@gmail.com * * This program is free software; you can redistribute it and/or * modify it under the terms of the GNU General Public License as @@ -110,7 +110,10 @@ void ui_sensorlist_update(struct ui_psensor *ui, bool complete) store = ui->sensors_store; - use_celsius = ui->config->temperature_unit == CELSIUS; + if (config_get_temperature_unit() == CELSIUS) + use_celsius = 1; + else + use_celsius = 0; valid = gtk_tree_model_get_iter_first(model, &iter); while (valid) {