diff options
author | Thaddeus Crews <repiteo@outlook.com> | 2024-11-11 14:18:38 -0600 |
---|---|---|
committer | Thaddeus Crews <repiteo@outlook.com> | 2024-11-11 14:18:38 -0600 |
commit | cea186af2af37dd43e960039716b2a6bcafc30af (patch) | |
tree | 294db30346eaf678d92fc12c24718547683d90e5 /editor/gui | |
parent | 87cf530bcfa78381ed9e318a31582d2d69c78fa5 (diff) | |
parent | cb7304662b8ee24df34c09b2ebd4404ec4cd43b8 (diff) | |
download | redot-engine-cea186af2af37dd43e960039716b2a6bcafc30af.tar.gz |
Merge pull request #98797 from KoBeWi/toastkill_f
Close toasts instantly when Close button is pressed
Diffstat (limited to 'editor/gui')
-rw-r--r-- | editor/gui/editor_toaster.cpp | 7 | ||||
-rw-r--r-- | editor/gui/editor_toaster.h | 1 |
2 files changed, 7 insertions, 1 deletions
diff --git a/editor/gui/editor_toaster.cpp b/editor/gui/editor_toaster.cpp index 4ebd1922a7..ffea1736a3 100644 --- a/editor/gui/editor_toaster.cpp +++ b/editor/gui/editor_toaster.cpp @@ -375,7 +375,7 @@ Control *EditorToaster::popup(Control *p_control, Severity p_severity, double p_ if (p_time > 0.0) { Button *close_button = memnew(Button); close_button->set_flat(true); - close_button->connect(SceneStringName(pressed), callable_mp(this, &EditorToaster::close).bind(panel)); + close_button->connect(SceneStringName(pressed), callable_mp(this, &EditorToaster::instant_close).bind(panel)); hbox_container->add_child(close_button); toast.close_button = close_button; @@ -501,6 +501,11 @@ void EditorToaster::close(Control *p_control) { toasts[p_control].popped = false; } +void EditorToaster::instant_close(Control *p_control) { + close(p_control); + p_control->set_modulate(Color(1, 1, 1, 0)); +} + EditorToaster *EditorToaster::get_singleton() { return singleton; } diff --git a/editor/gui/editor_toaster.h b/editor/gui/editor_toaster.h index 35a4337746..6fcc2ce3e9 100644 --- a/editor/gui/editor_toaster.h +++ b/editor/gui/editor_toaster.h @@ -115,6 +115,7 @@ public: Control *popup(Control *p_control, Severity p_severity = SEVERITY_INFO, double p_time = 0.0, const String &p_tooltip = String()); void popup_str(const String &p_message, Severity p_severity = SEVERITY_INFO, const String &p_tooltip = String()); void close(Control *p_control); + void instant_close(Control *p_control); EditorToaster(); ~EditorToaster(); |