QMainWindow.move() doesnt work on wayland
-
Re: QWidget.move() not work under qtwayland
The issue is similar to the one above.
self.move() works fine in x11 but has no effect in Wayland .
I have also noticed that qt designer opens its self in a corner when using Wayland.a minimum reproducible example
from PyQt5 import QtGui,QtCore,QtWidgets
import sysclass Ui(QtWidgets.QMainWindow):
def init(self):
super(Ui,self).init()
self.show()
self.move(100,100)app =QtWidgets.QApplication(sys.argv)
window=Ui()
app.exec_()Is this a bug?