From b4dc69ced146fe455643941a02510965d4a926e5 Mon Sep 17 00:00:00 2001 From: KikooDX Date: Wed, 6 Nov 2019 11:15:12 +0100 Subject: [PATCH] Added the mighty -4... --- locate2.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/locate2.py b/locate2.py index e763c72..236884a 100644 --- a/locate2.py +++ b/locate2.py @@ -95,7 +95,7 @@ class Pad(Screen): to_print = to_print[:-1] print(to_print[:-width], end="") if ask_for_input or fancy: - return input(to_print[-width:-1]+ " " * (ogwidth - width) if fancy else "> ") + return input(to_print[-width:-1]+ " " * (ogwidth - width - 4) if fancy else "> ") else: print(to_print[-width:], end=endl) return None