mirror of
https://github.com/godotengine/godot.git
synced 2025-04-01 00:41:35 +08:00
Merge pull request #96609 from detomon/prevent-changing-readonly-property
Prevent editing value on focus when `EditorSpinSlider` is read-only
This commit is contained in:
commit
88ed6af1e6
@ -665,6 +665,10 @@ bool EditorSpinSlider::is_grabbing() const {
|
||||
}
|
||||
|
||||
void EditorSpinSlider::_focus_entered() {
|
||||
if (is_read_only()) {
|
||||
return;
|
||||
}
|
||||
|
||||
_ensure_input_popup();
|
||||
value_input->set_text(get_text_value());
|
||||
value_input_popup->set_size(get_size());
|
||||
|
Loading…
x
Reference in New Issue
Block a user