documentor: Fixed Editor character processing: a ! in front of the key.ctrl check...
authorJerome St-Louis <jerome@ecere.com>
Sat, 17 Mar 2012 04:44:13 +0000 (00:44 -0400)
committerJerome St-Louis <jerome@ecere.com>
Sat, 17 Mar 2012 04:44:13 +0000 (00:44 -0400)
documentor/src/Documentor.ec

index b2a0fe5..39052ff 100644 (file)
@@ -3289,7 +3289,7 @@ class HelpView : HTMLView
             default:
             {
                // eC BUG HERE: (Should be fixed)
-               if(key.ctrl && !key.alt && ch >= 32 && ch != 128 /*&& ch < 128*/)
+               if(!key.ctrl && !key.alt && ch >= 32 && ch != 128 /*&& ch < 128*/)
                {
                   char string[5];
                   int len = UTF32toUTF8Len(&ch, 1, string, 5);