Fix text minimap crash when last line is folded
This commit is contained in:
parent
a8e007f055
commit
df0c8386a9
1 changed files with 4 additions and 0 deletions
|
@ -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;
|
Map<int, HighlighterInfo> color_map;
|
||||||
if (syntax_coloring) {
|
if (syntax_coloring) {
|
||||||
color_map = _get_line_syntax_highlighting(minimap_line);
|
color_map = _get_line_syntax_highlighting(minimap_line);
|
||||||
|
|
Loading…
Reference in a new issue