From 5a5df31b1a6d28186ee89f7a992652632fc99be8 Mon Sep 17 00:00:00 2001 From: Damien Elmes Date: Thu, 25 Oct 2018 15:47:17 +1000 Subject: [PATCH] simplify about sizing --- aqt/about.py | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/aqt/about.py b/aqt/about.py index d3f4bf71b..0427d22d9 100644 --- a/aqt/about.py +++ b/aqt/about.py @@ -125,9 +125,8 @@ system. It's free and open source.") please get in touch.") abouttext += '

' + _("A big thanks to all the people who have provided \ suggestions, bug reports and donations.") + abt.label.setMinimumWidth(800) + abt.label.setMinimumHeight(600) + dialog.show() abt.label.stdHtml(abouttext, js=" ") - def resizeAndShow(arg): - dialog.adjustSize() - dialog.show() - abt.label.evalWithCallback("1", resizeAndShow) return dialog