diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2020-01-12 14:16:14 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-01-12 14:16:14 +0100 |
commit | 478ab8b45b51ccaafb9db0251ff760e7136e33f6 (patch) | |
tree | 03f6854895ba4bd4e79e5c883f2e4fb3a08de2f9 /scene/gui/spin_box.h | |
parent | 26bb08f8b3b009f17645558309f4c5c02733e4c2 (diff) | |
parent | 083637a901569e872b3bcddc526818fd1e9ea3c4 (diff) | |
download | redot-engine-478ab8b45b51ccaafb9db0251ff760e7136e33f6.tar.gz |
Merge pull request #34960 from johannesgunnar/spin_box-apply-method
Spinbox apply input method
Diffstat (limited to 'scene/gui/spin_box.h')
-rw-r--r-- | scene/gui/spin_box.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/scene/gui/spin_box.h b/scene/gui/spin_box.h index 13ba168ef3..04491c8477 100644 --- a/scene/gui/spin_box.h +++ b/scene/gui/spin_box.h @@ -88,6 +88,8 @@ public: void set_prefix(const String &p_prefix); String get_prefix() const; + void apply(); + SpinBox(); }; |