Merge pull request #75254 from bruvzg/macos_menu_cb_loop
[macOS] Fix infinite loop caused by global menu callbacks which trigger EditorProgress dialog.
This commit is contained in:
commit
db77702177
|
@ -188,7 +188,7 @@ private:
|
|||
Variant tag;
|
||||
Callable callback;
|
||||
};
|
||||
Vector<MenuCall> deferred_menu_calls;
|
||||
List<MenuCall> deferred_menu_calls;
|
||||
|
||||
const NSMenu *_get_menu_root(const String &p_menu_root) const;
|
||||
NSMenu *_get_menu_root(const String &p_menu_root);
|
||||
|
|
|
@ -3521,14 +3521,16 @@ void DisplayServerMacOS::process_events() {
|
|||
}
|
||||
|
||||
// Process "menu_callback"s.
|
||||
for (MenuCall &E : deferred_menu_calls) {
|
||||
Variant tag = E.tag;
|
||||
while (List<MenuCall>::Element *call_p = deferred_menu_calls.front()) {
|
||||
MenuCall call = call_p->get();
|
||||
deferred_menu_calls.pop_front(); // Remove before call to avoid infinite loop in case callback is using `process_events` (e.g. EditorProgress).
|
||||
|
||||
Variant tag = call.tag;
|
||||
Variant *tagp = &tag;
|
||||
Variant ret;
|
||||
Callable::CallError ce;
|
||||
E.callback.callp((const Variant **)&tagp, 1, ret, ce);
|
||||
call.callback.callp((const Variant **)&tagp, 1, ret, ce);
|
||||
}
|
||||
deferred_menu_calls.clear();
|
||||
|
||||
if (!drop_events) {
|
||||
_process_key_events();
|
||||
|
|
Loading…
Reference in New Issue