axis: whitespace only

EDIT: fix merge conflicts 12 Dec 2018 <phillc54>

Signed-off-by: Robert W. Ellenberg <rwe24g@gmail.com>
This commit is contained in:
Robert W. Ellenberg 2015-04-06 22:13:52 -04:00 committed by Phillip Carter
parent 8755bc5895
commit 3b0eb77bc1

View file

@ -601,6 +601,18 @@ class MyOpengl(GlCanonDraw, Opengl):
text.delete("0.0", "end")
t = droposstrs[:]
i = 0
for ts in t:
if i < len(homed) and homed[i]:
t[i] += "*"
else:
t[i] += " "
if i < len(homed) and limit[i]:
t[i] += "!" # !!!1!
else:
t[i] += " "
i+=1
text.insert("end", "\n".join(t))
window_height = text.winfo_height()