regen Rack patch diffs

Signed-off-by: falkTX <falktx@falktx.com>
This commit is contained in:
falkTX 2023-08-28 09:56:27 +02:00
parent bf3fa93a80
commit 3ede7c2b05
No known key found for this signature in database
GPG key ID: CDBAA37ABC74FBA0
13 changed files with 180 additions and 132 deletions

View file

@ -324,13 +324,13 @@ void WindowSetPluginRemote(Window* const window, NanoTopLevelWidget* const tlw)
// Init settings
WindowParametersRestore(window);
widget::Widget::ContextCreateEvent e;
widget::Widget::ContextCreateEvent e = {};
e.vg = window->vg;
APP->scene->onContextCreate(e);
}
else
{
widget::Widget::ContextDestroyEvent e;
widget::Widget::ContextDestroyEvent e = {};
e.vg = window->vg;
APP->scene->onContextDestroy(e);
@ -437,13 +437,13 @@ void WindowSetPluginUI(Window* const window, CardinalBaseUI* const ui)
// Init settings
WindowParametersRestore(window);
widget::Widget::ContextCreateEvent e;
widget::Widget::ContextCreateEvent e = {};
e.vg = window->vg;
APP->scene->onContextCreate(e);
}
else
{
widget::Widget::ContextDestroyEvent e;
widget::Widget::ContextDestroyEvent e = {};
e.vg = window->vg;
APP->scene->onContextDestroy(e);