From ee967448bae4733aec70ba128062bc3357a2f0df Mon Sep 17 00:00:00 2001 From: Jedidiah Barber Date: Thu, 6 Feb 2025 21:55:19 +1300 Subject: Widget deletion inside callbacks is now safe --- body/c_fl_window.cpp | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'body/c_fl_window.cpp') diff --git a/body/c_fl_window.cpp b/body/c_fl_window.cpp index e41af01..d0314be 100644 --- a/body/c_fl_window.cpp +++ b/body/c_fl_window.cpp @@ -7,6 +7,7 @@ #include #include #include "c_fl_window.h" +#include "c_fl.h" @@ -67,7 +68,11 @@ WINDOW new_fl_window2(int w, int h, char* label) { } void free_fl_window(WINDOW n) { - delete static_cast(n); + if (fl_inside_callback) { + fl_delete_widget(n); + } else { + delete static_cast(n); + } } -- cgit