Details
Description
I'm trying to get the QNativeInterface when using wayland so I can get access to the "display" variable:
https://doc.qt.io/qt-6/qnativeinterface-qwaylandapplication.html#display
Without qt6-wayland installed
import sys from PySide6.QtWidgets import QApplication app = QApplication(sys.argv) qt.qpa.plugin: Could not find the Qt platform plugin "wayland" in "" app.nativeInterface() <PySide6.QtGui.QNativeInterface.QX11Application at 0x78cb1982c700>
But with qt6-wayland installed:
import sys from PySide6.QtWidgets import QApplication app = QApplication(sys.argv) app.nativeInterface() <---- None is returned ---->
Could the shiboken generators be updated to expose this Native interface?