diff options
author | Luca Tringali <tringalinvent@libero.it> | 2019-01-23 17:53:14 +0100 |
---|---|---|
committer | Luca Tringali <tringalinvent@libero.it> | 2019-01-23 17:53:14 +0100 |
commit | cd0ee5419847f47206861780504e1c1595b2d07c (patch) | |
tree | 0d564dabced00af379739c2728ff0be1fb9d9ebf /termostato.py | |
parent | fbf4af0fe73a8da8fc8924ea7466d85331b9fb46 (diff) |
Support PiTFT3.5 640x480 resolution
Diffstat (limited to 'termostato.py')
-rwxr-xr-x | termostato.py | 1 |
1 files changed, 1 insertions, 0 deletions
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_()) |