From 8865a607fb59810cbb9ced7a120bed63ffa67589 Mon Sep 17 00:00:00 2001 From: Jean-Philippe Orsini Date: Fri, 12 Oct 2012 05:56:12 +0000 Subject: [PATCH] fixed >80col --- src/graph.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/graph.c b/src/graph.c index 0203903..f5d0d5a 100644 --- a/src/graph.c +++ b/src/graph.c @@ -385,7 +385,9 @@ graph_update(struct psensor **sensors, } if (no_graphs) - display_no_graphs_warning(cr, g_xoff + 12, g_height /2); + display_no_graphs_warning(cr, + g_xoff + 12, + g_height / 2); } cr_pixmap = gdk_cairo_create(gtk_widget_get_window(w_graph)); -- 2.7.4