PySide 1.2.2 setMaxWidth and AeroSnap

Juan Christian juan0christian at gmail.com
Sun Nov 16 10:51:51 EST 2014


PySide 1.2.2
Python 3.4.2

Code:

from PySide.QtGui import *

class MainWindow(QWidget):
def __init__(self):
QWidget.__init__(self)
self.setMinimumSize(600, 700)
self.setMaximumWidth(600)
self.setLayout(QVBoxLayout())

* Call to this module in another module *
app = QApplication(sys.argv)
window = MainWindow()
window.show()
app.exec_()

When I set the "setMaxWidth" I can't use the Windows AeroSnap anymore, why?

I didn't set a "setMaxHeight", so this shouldn't lock me from doing the
snap. Without the "setMaxWidth" the AeroSnap works as usual, but I need to
limit my width to 600, because I need my tool to have this kind of
"short-width, long-height" look.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.python.org/pipermail/python-list/attachments/20141116/2a05ef9a/attachment.html>


More information about the Python-list mailing list