<div dir="ltr"><div class="gmail_extra"><div class="gmail_quote"><br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">
Entering the print statement you suggested just before the exit resulted<br>
in (0, 0, 1360, 768) the size of the screen. However if I also place the<br>
print statement immediately after self.setGeometry(50, 50, 200,100) the<br>
result of the print statement is (50,50,200,100). The result immediately<br>
after the self.show() statement is (0,0,1360,768)<br></blockquote><div><br></div><div>Obviously something in the implementation of show() is causing the mainwindow to fill the screen, comparable to clicking the maximize box on a Windows or Ubuntu app.<br><br></div><div>Aha. And the word "maximize" -- search for that in the index of the Qt Assistant. It leads to the docs for the QWidget class, windowState() method. I think you will find that somehow, I have no idea why, your window has been maximized. Probably a call to setWindowState() before? or after show() will fix it.<br></div></div></div></div>