Author: Antonio Cuni <[email protected]>
Branch:
Changeset: r125:1d90fa247635
Date: 2011-06-09 10:18 +0200
http://bitbucket.org/pypy/jitviewer/changeset/1d90fa247635/
Log: don't use setMinimumSize, else we cannot resize the window after
it's created; also, 1300px is the minimum to fully display the left
menu
diff --git a/bin/qwebview.py b/bin/qwebview.py
--- a/bin/qwebview.py
+++ b/bin/qwebview.py
@@ -18,7 +18,7 @@
app = QApplication(sys.argv)
web = QWebView()
- web.setMinimumSize(1024, 800)
+ web.resize(1300, 1000)
web.setWindowTitle(title)
web.load(QUrl(url))
web.show()
_______________________________________________
pypy-commit mailing list
[email protected]
http://mail.python.org/mailman/listinfo/pypy-commit