diff -r 691083b5682a -r 4665ba25a0ba controls/CustomToolTip.py --- a/controls/CustomToolTip.py Fri Aug 18 20:14:38 2017 +0300 +++ b/controls/CustomToolTip.py Fri Aug 18 23:39:15 2017 +0300 @@ -87,8 +87,7 @@ new_line = words[0] for word in words[1:]: # Add word to line - if len(new_line + " " + word) <= \ - TOOLTIP_MAX_CHARACTERS: + if len(new_line + " " + word) <= TOOLTIP_MAX_CHARACTERS: new_line += " " + word # Create new line else: