diff options
Diffstat (limited to 'src/gui/widgets/widget.cpp')
-rw-r--r-- | src/gui/widgets/widget.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/gui/widgets/widget.cpp b/src/gui/widgets/widget.cpp index 7fdab305e..023f4a035 100644 --- a/src/gui/widgets/widget.cpp +++ b/src/gui/widgets/widget.cpp @@ -516,6 +516,7 @@ void Widget::windowResized() Widget *Widget::callPostInit(Widget *const widget) { - widget->postInit(); + if (widget) + widget->postInit(); return widget; } |