From 0ec3b566d6db45dce118aedc77dc9d137901487d Mon Sep 17 00:00:00 2001 From: ccremers Date: Tue, 12 Dec 2006 16:33:21 +0000 Subject: [PATCH] - Modified the default for resizing. --- gui/Gui/Attackwindow.py | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/gui/Gui/Attackwindow.py b/gui/Gui/Attackwindow.py index a1840e9..52ae644 100644 --- a/gui/Gui/Attackwindow.py +++ b/gui/Gui/Attackwindow.py @@ -125,12 +125,9 @@ class AttackWindow(wx.Frame): self.claim = cl # TODO maybe fitting defaults should come from Preferences. - # Now, it is default yes if it looks nice (i.e. we are using - # PIL) - if Preference.usePIL(): - self.fit = True - else: - self.fit = False + # Now, it is default no even if we have PIL, for performance + # reasons. + self.fit = False self.CreateInteriorWindowComponents()