1
0
Fork 0

Prevent editing value on focus when `EditorSpinSlider` is read-only

(cherry picked from commit 88f1b679f3)
This commit is contained in:
detomon 2024-07-14 13:53:33 +02:00 committed by Rémi Verschelde
parent cbcc5f8d19
commit 2635ff777e
No known key found for this signature in database
GPG Key ID: C3336907360768E1
1 changed files with 4 additions and 0 deletions

View File

@ -664,6 +664,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());