mirror of
https://github.com/yuzu-mirror/yuzu.git
synced 2024-11-04 19:19:59 +00:00
RenderWidget: Set WA_DontCreateNativeAncestors
Some windowing systems like wayland are designed to show hardware accellerated surfaces as subsurfaces and not native windows.
This commit is contained in:
parent
5754456292
commit
29fbce9fe6
1 changed files with 1 additions and 0 deletions
|
@ -223,6 +223,7 @@ class RenderWidget : public QWidget {
|
|||
public:
|
||||
explicit RenderWidget(GRenderWindow* parent) : QWidget(parent), render_window(parent) {
|
||||
setAttribute(Qt::WA_NativeWindow);
|
||||
setAttribute(Qt::WA_DontCreateNativeAncestors);
|
||||
setAttribute(Qt::WA_PaintOnScreen);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue