From cd0ee5419847f47206861780504e1c1595b2d07c Mon Sep 17 00:00:00 2001 From: Luca Tringali Date: Wed, 23 Jan 2019 17:53:14 +0100 Subject: Support PiTFT3.5 640x480 resolution --- termostato.py | 1 + 1 file changed, 1 insertion(+) (limited to 'termostato.py') diff --git a/termostato.py b/termostato.py index 55f38fc..a91578e 100755 --- a/termostato.py +++ b/termostato.py @@ -158,5 +158,6 @@ class MainWindow(QMainWindow): if __name__ == "__main__": app = QApplication(sys.argv) w = MainWindow() + w.setFixedSize(640,480) w.show() sys.exit(app.exec_()) -- cgit v1.1