diff options
author | Keith Packard <keithp@keithp.com> | 2013-02-10 00:40:59 -0800 |
---|---|---|
committer | Keith Packard <keithp@keithp.com> | 2013-02-10 00:40:59 -0800 |
commit | 32270296671aac3b3ba15f9c1777bcdd77b9c36c (patch) | |
tree | 2f716979c3f2bacc8668498a5ed33d6c2f3391f0 | |
parent | a5fb03421751b342dcd450caee49a608d8828175 (diff) |
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 <keithp@keithp.com>
-rw-r--r-- | altosui/AltosGraph.java | 2 |
1 files changed, 1 insertions, 1 deletions
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; } } |