X-Git-Url: https://git.wpitchoune.net/gitweb/?a=blobdiff_plain;f=src%2Fmain.c;h=09dd18cf3f0b0a0dc6d81718d27e580a547f9d75;hb=1c7503e149474b932227ada44ca82df07be2d696;hp=defc60d80e7981d22815e88a5afd895b917f3021;hpb=30280f0093e8aea4bc8af8a46c2e529e8ec61ac9;p=psensor.git diff --git a/src/main.c b/src/main.c index defc60d..09dd18c 100644 --- a/src/main.c +++ b/src/main.c @@ -185,24 +185,19 @@ static gboolean ui_refresh_thread(gpointer data) struct config *cfg; gboolean ret; struct ui_psensor *ui = (struct ui_psensor *)data; - int use_celsius; ret = TRUE; cfg = ui->config; pmutex_lock(&ui->sensors_mutex); - graph_update(ui->sensors, ui->w_graph, ui->config, ui->main_window); + graph_update(ui->sensors, ui_get_graph(), ui->config, ui->main_window); ui_sensorlist_update(ui, 0); if (is_appindicator_supported() || is_status_supported()) indicators_update(ui); - if (config_get_temperature_unit() == CELSIUS) - use_celsius = 1; - else - use_celsius = 0; ui_unity_launcher_entry_update(ui->sensors); if (ui->graph_update_interval != cfg->graph_update_interval) { @@ -232,7 +227,7 @@ associate_cb_alarm_raised(struct psensor **sensors, struct ui_psensor *ui) { bool ret; struct psensor *s; - double d, high_temp; + double high_temp; high_temp = config_get_default_high_threshold_temperature();