summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThaddeus Crews <repiteo@outlook.com>2024-10-25 13:03:59 -0500
committerThaddeus Crews <repiteo@outlook.com>2024-10-25 13:03:59 -0500
commit814187de60466d3b2a823aa020137ec5b71db9ce (patch)
tree96ce1d4351852c7b3bbfced88f3d527bd3174c0a
parent851516eeecd8e2fb776055ced9f6e1be867fcb8c (diff)
parentef48c4d306fae2b819e937509b663aef9e285f7a (diff)
downloadredot-engine-814187de60466d3b2a823aa020137ec5b71db9ce.tar.gz
Merge pull request #97212 from Riteo/picking-the-right-expand-mode
ColorPicker: Ignore TextureRect expand mode during legacy picking
-rw-r--r--scene/gui/color_picker.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/scene/gui/color_picker.cpp b/scene/gui/color_picker.cpp
index 5532176b2d..2d88a9bddf 100644
--- a/scene/gui/color_picker.cpp
+++ b/scene/gui/color_picker.cpp
@@ -1553,6 +1553,7 @@ void ColorPicker::_pick_button_pressed_legacy() {
picker_texture_rect = memnew(TextureRect);
picker_texture_rect->set_anchors_preset(Control::PRESET_FULL_RECT);
+ picker_texture_rect->set_expand_mode(TextureRect::EXPAND_IGNORE_SIZE);
picker_window->add_child(picker_texture_rect);
picker_texture_rect->set_default_cursor_shape(CURSOR_POINTING_HAND);
picker_texture_rect->connect(SceneStringName(gui_input), callable_mp(this, &ColorPicker::_picker_texture_input));