Details
-
Bug
-
Resolution: Won't Do
-
P2: Important
-
None
-
6.4.2
-
None
Description
The following Qt application moves a QWidget window on all desktops, except Ubuntu Wayland:
#include <QApplication> #include <QWidget>int main(int argc, char *argv[]) { QApplication a(argc, argv); QWidget w = QWidget(); w.setWindowTitle("Window Move"); w.setFixedSize(300, 200); // Move window does not work on Ubuntu Wayland, works on X11 w.move(1000, 600); w.show(); return a.exec(); }
On Ubuntu Wayland, the window is always created in the upper left corner and does not move to the x, y location:
Attachments
Issue Links
- is blocked by
-
PYSIDE-2190 Cannot move window Ubuntu Wayland
- Closed
- is duplicated by
-
PYSIDE-2305 QMainWindow.setGeometry not work in Linux
- Closed
- relates to
-
QTBUG-86780 Wayland: Add notes to doc that global positioning does not work on Wayland
- Closed