Fixes the selection rect in item_list drawn not clipped
This commit is contained in:
parent
07ab60a8d7
commit
37d2b17f88
@ -781,9 +781,7 @@ void ItemList::_notification(int p_what) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (has_focus()) {
|
if (has_focus()) {
|
||||||
VisualServer::get_singleton()->canvas_item_add_clip_ignore(get_canvas_item(), true);
|
|
||||||
draw_style_box(get_stylebox("bg_focus"), Rect2(Point2(), size));
|
draw_style_box(get_stylebox("bg_focus"), Rect2(Point2(), size));
|
||||||
VisualServer::get_singleton()->canvas_item_add_clip_ignore(get_canvas_item(), false);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
if (shape_changed) {
|
if (shape_changed) {
|
||||||
@ -1429,7 +1427,6 @@ ItemList::ItemList() {
|
|||||||
allow_rmb_select = false;
|
allow_rmb_select = false;
|
||||||
|
|
||||||
icon_scale = 1.0f;
|
icon_scale = 1.0f;
|
||||||
set_clip_contents(true);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
ItemList::~ItemList() {
|
ItemList::~ItemList() {
|
||||||
|
Loading…
Reference in New Issue
Block a user