From dae785e5d05c474afe1d54faa486940c0a911e35 Mon Sep 17 00:00:00 2001 From: Phil Sutter Date: Wed, 2 Dec 2009 00:04:29 +0100 Subject: [PATCH] introduce scale field for bar and gauge specials --- src/specials.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/specials.c b/src/specials.c index c32cb9a5..92de494a 100644 --- a/src/specials.c +++ b/src/specials.c @@ -57,10 +57,12 @@ int default_gauge_width = 40, default_gauge_height = 25; struct bar { int width, height; + unsigned int scale; }; struct gauge { int width, height; + unsigned int scale; }; struct graph {