From c7f762182350e81be515b99a8c1d758687441895 Mon Sep 17 00:00:00 2001 From: Neil Brown Date: Thu, 28 Aug 2008 21:56:13 +1000 Subject: [PATCH] Fix breakage of "newline" code. When a newline is entered we incorrectly disable text entry by calling text_flush. --- scribble.py | 1 + 1 file changed, 1 insertion(+) diff --git a/scribble.py b/scribble.py index aa23e1f..69a6844 100755 --- a/scribble.py +++ b/scribble.py @@ -937,6 +937,7 @@ class ScribblePad: tail = self.textstr[self.textcurs:] self.textstr = self.textstr[:self.textcurs] self.flush_text() + self.texttoggle.set_active(True) self.textcurs = len(tail) self.textstr = tail self.textpos = [ self.textpos[0], self.textpos[1] + -- 2.43.0