From 8e81b5346a264efb0937aab519e8be950b226bce Mon Sep 17 00:00:00 2001 From: Robby Findler Date: Wed, 10 Feb 2016 09:19:33 -0600 Subject: [PATCH] don't color parens when the colorer is stopped --- gui-lib/framework/private/color.rkt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/gui-lib/framework/private/color.rkt b/gui-lib/framework/private/color.rkt index 9d00aec6..49701a54 100644 --- a/gui-lib/framework/private/color.rkt +++ b/gui-lib/framework/private/color.rkt @@ -769,7 +769,8 @@ added get-regions (clear-old-locations) (set! clear-old-locations void) (when (and (preferences:get 'framework:highlight-parens) - (not just-clear?)) + (not just-clear?) + (not stopped?)) (let* ((here (get-start-position))) (when (= here (get-end-position)) (let ([ls (find-ls here)])