Hi.<br><br>I'm making an app that will use two (or more) screens. But I have a problem. I can not move to a second screen.<br>My layout screens is screen 0 (0, 0, 1366,756), and on right there is a smaller screen (1366,0,1024,756).<br>
<br>This sample code will explain itself:<br><br>> from PySide import QtCore, QtGui<br>> import sys<br>> <br>> class Wid(QtGui.QWidget):<br>>     def __init__(self):<br>>         super(Wid, self).__init__()<br>
>         self.setGeometry(QtGui.QApplication.desktop().screenGeometry(1))<br>> <br>> qtApp = QtGui.QApplication(sys.argv)<br>> w = Wid()<br>> w.show()<br>> qtApp.exec_()<br><br>When I execute it, this window will be visible on the (0,0), not on the (1366,0) point. When I change to value to (1365,0) the 1 pixel line is on the left screen, and the rest is on the right screen. But when add 1 pixel to the right, everything returns back to the left monitor. Do anyone have the same problem with my code?<br>
<br>I'm using Arch Linux, with Awesome Window Manager. <br clear="all"><br>-- <br>Regards<br>Dominik "Socek" Długajczyk<br>