From 32270296671aac3b3ba15f9c1777bcdd77b9c36c Mon Sep 17 00:00:00 2001 From: Keith Packard Date: Sun, 10 Feb 2013 00:40:59 -0800 Subject: [PATCH] altosui: Adjust graph voltage tool-tip value format Voltages are always small, so use more of the space for the fractional value. Signed-off-by: Keith Packard --- altosui/AltosGraph.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/altosui/AltosGraph.java b/altosui/AltosGraph.java index 9383824a..5bd756ec 100644 --- a/altosui/AltosGraph.java +++ b/altosui/AltosGraph.java @@ -50,7 +50,7 @@ class AltosVoltage extends AltosUnits { } public int show_fraction(int width) { - return width / 9; + return width / 2; } } -- 2.30.2