Catch exceptions in Window.update (Fixes #43)

This commit is contained in:
Struma 2021-05-19 16:29:16 -04:00 committed by Roza
parent 07548ff9d6
commit 0af061edf1

View file

@ -47,7 +47,7 @@ RB_METHOD(windowUpdate) {
Window *w = getPrivateData<Window>(self);
w->update();
GUARD_EXC(w->update(););
return Qnil;
}