Changeset 3137

Show
Ignore:
Timestamp:
05/25/07 16:49:07 (2 years ago)
Author:
paul
Message:

For some reason, having an MDI form as the parent for my about window sizes the about window very large. This fixes it.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/dabo/dApp.py

    r3135 r3137  
    669669        if frm is None: 
    670670            frm = self.MainForm 
     671        if frm.MDI: 
     672            # Strange big sizing of the about form happens on Windows 
     673            # when the parent form is MDI. 
     674            frm = None 
    671675        dlg = about(frm) 
    672676        dlg.show()