mirror of
https://github.com/godotengine/godot.git
synced 2026-01-08 00:25:01 +03:00
Merge pull request #49239 from Paulb23/text_edit_selection_behind_minimap
Fix TextEdit selection drawing behing minimap
This commit is contained in:
@@ -1187,7 +1187,8 @@ void TextEdit::_notification(int p_what) {
|
||||
if (rect.position.x < xmargin_beg) {
|
||||
rect.size.x -= (xmargin_beg - rect.position.x);
|
||||
rect.position.x = xmargin_beg;
|
||||
} else if (rect.position.x + rect.size.x > xmargin_end) {
|
||||
}
|
||||
if (rect.position.x + rect.size.x > xmargin_end) {
|
||||
rect.size.x = xmargin_end - rect.position.x;
|
||||
}
|
||||
draw_rect(rect, cache.selection_color, true);
|
||||
|
||||
Reference in New Issue
Block a user