Merge pull request #10160 from fpdotmonkey/heed-renderwidget-switch-warning

Fix switch warning in RenderWidget
This commit is contained in:
Léo Lam 2021-10-13 01:44:24 +02:00 committed by GitHub
commit c2d17f3f17
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 0 deletions

View File

@ -454,6 +454,8 @@ bool RenderWidget::event(QEvent* event)
case QEvent::Close:
emit Closed();
break;
default:
break;
}
return QWidget::event(event);
}