Merge pull request #33084 from Paulb23/33077_minimap_fold_crash
Fix text minimap crash when last line is folded
This commit is contained in:
commit
f037eb7b0b
@ -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 New Issue
Block a user