From 246ca08e69dae6bf4b35e72427701c92e820a760 Mon Sep 17 00:00:00 2001 From: Headshot Date: Mon, 29 Jul 2019 10:59:47 -0430 Subject: [PATCH] changes to autocaps --- gameview.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gameview.py b/gameview.py index fc72b00..38a752f 100644 --- a/gameview.py +++ b/gameview.py @@ -1253,7 +1253,7 @@ class gui(QtGui.QWidget): l[0] = l[0].upper() if l[-1] != ".": l.append(".") - text = "".join(l).replace(" i ", " I ").replace("i'm", "I'm") + text = "".join(l).replace(" i ", " I ").replace("i'm", "I'm").replace("it's", "It's") self.sendOOCchat(self.oocnameinput.text().toUtf8(), text) self.oocinput.clear() @@ -1270,7 +1270,7 @@ class gui(QtGui.QWidget): l[0] = l[0].upper() if l[-1] != ".": l.append(".") - text = "".join(l).replace(" i ", " I ").replace("i'm", "I'm") + text = "".join(l).replace(" i ", " I ").replace("i'm", "I'm").replace("it's", "It's") if self.spacebartext.isChecked(): l = list(text) for i in range(1, len(l)+len(l)-1, 2):