From 633deebaa2fb250a032abca252b906489a90fd36 Mon Sep 17 00:00:00 2001 From: Jeremy Katz Date: Wed, 14 Aug 2002 06:01:18 +0000 Subject: scale images to 425x225 if they're not that size for the ransom notes --- iw/progress_gui.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'iw/progress_gui.py') diff --git a/iw/progress_gui.py b/iw/progress_gui.py index c43dea76b..ec471d3d7 100644 --- a/iw/progress_gui.py +++ b/iw/progress_gui.py @@ -117,7 +117,7 @@ class InstallProgressWindow (InstallWindow): num = self.pixcurnum + 1 if num >= len(self.pixmaps): num = min(1, len(self.pixmaps)) - pix = self.ics.readPixmap (self.pixmaps[num]) + pix = self.ics.readPixmap (self.pixmaps[num], 425, 225) if pix: if self.adpix: self.adbox.remove (self.adpix) -- cgit