# HG changeset patch # User Surkov Sergey # Date 1484649038 -10800 # Node ID 6f4624687b8954fba529644d2f4df6aded96702a # Parent ad3dee8b6d489c0ef086ff19a5172c63ffba3734 fix IL jumps highlighting in Text Viewer diff -r ad3dee8b6d48 -r 6f4624687b89 editors/TextViewer.py --- a/editors/TextViewer.py Mon Jan 16 12:22:58 2017 +0300 +++ b/editors/TextViewer.py Tue Jan 17 13:30:38 2017 +0300 @@ -414,7 +414,7 @@ self.Colourise(0, -1) def RefreshJumpList(self): - if self.TextSyntax != "IL": + if self.TextSyntax == "IL": self.Jumps = [jump.upper() for jump in LABEL_MODEL.findall(self.GetText())] self.Colourise(0, -1)