Fix text minimap crash when last line is folded

This commit is contained in:
Paulb23 2019-10-26 13:37:25 +01:00
parent a8e007f055
commit df0c8386a9

View File

@ -958,6 +958,10 @@ void TextEdit::_notification(int p_what) {
}
}
if (minimap_line < 0 || minimap_line >= (int)text.size()) {
break;
}
Map<int, HighlighterInfo> color_map;
if (syntax_coloring) {
color_map = _get_line_syntax_highlighting(minimap_line);