diff options
author | Bibiko <bibiko@eva.mpg.de> | 2012-01-05 19:10:08 +0000 |
---|---|---|
committer | Bibiko <bibiko@eva.mpg.de> | 2012-01-05 19:10:08 +0000 |
commit | d4a0235ca4a224ce0c79d8b17d18cab27167bf78 (patch) | |
tree | a3b1a962385bce35a9745416c9d6dec8fc0c17ca /Source | |
parent | a7ad078dba900161a6f686608fbd015658323de3 (diff) | |
download | sequelpro-d4a0235ca4a224ce0c79d8b17d18cab27167bf78.tar.gz sequelpro-d4a0235ca4a224ce0c79d8b17d18cab27167bf78.tar.bz2 sequelpro-d4a0235ca4a224ce0c79d8b17d18cab27167bf78.zip |
• removed blocking of SPTextView textStorage while syntax hiliting
Diffstat (limited to 'Source')
-rw-r--r-- | Source/SPTextView.m | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/SPTextView.m b/Source/SPTextView.m index e1003be1..b32afa5b 100644 --- a/Source/SPTextView.m +++ b/Source/SPTextView.m @@ -2776,7 +2776,7 @@ NSInteger _alphabeticSort(id string1, id string2, void *reverse) textRange = NSMakeRange(0,strlength); } - [textStore beginEditing]; + // [textStore beginEditing]; NSColor *tokenColor; @@ -2905,7 +2905,7 @@ NSInteger _alphabeticSort(id string1, id string2, void *reverse) [self setTypingAttributes:typeAttr]; } - [textStore endEditing]; + // [textStore endEditing]; [self setNeedsDisplayInRect:[self bounds]]; |