|
@@ -246,6 +246,10 @@ bool SpinBox::is_editable() const {
|
|
|
return line_edit->is_editable();
|
|
|
}
|
|
|
|
|
|
+void SpinBox::apply() {
|
|
|
+ _text_entered(line_edit->get_text());
|
|
|
+}
|
|
|
+
|
|
|
void SpinBox::_bind_methods() {
|
|
|
|
|
|
//ClassDB::bind_method(D_METHOD("_value_changed"),&SpinBox::_value_changed);
|
|
@@ -259,6 +263,7 @@ void SpinBox::_bind_methods() {
|
|
|
ClassDB::bind_method(D_METHOD("get_prefix"), &SpinBox::get_prefix);
|
|
|
ClassDB::bind_method(D_METHOD("set_editable", "editable"), &SpinBox::set_editable);
|
|
|
ClassDB::bind_method(D_METHOD("is_editable"), &SpinBox::is_editable);
|
|
|
+ ClassDB::bind_method(D_METHOD("apply"), &SpinBox::apply);
|
|
|
ClassDB::bind_method(D_METHOD("_line_edit_focus_exit"), &SpinBox::_line_edit_focus_exit);
|
|
|
ClassDB::bind_method(D_METHOD("get_line_edit"), &SpinBox::get_line_edit);
|
|
|
ClassDB::bind_method(D_METHOD("_line_edit_input"), &SpinBox::_line_edit_input);
|