* src/gramps_main.py (read_file): Remove set_resizable() calls.

* src/ReadGedcom.py (parse_person_object,parse_family_object):
Always add media references/objects, even if the files are not found
(keep the warnings); set the note for the media references.


svn: r4647
This commit is contained in:
Alex Roitman
2005-05-20 21:27:03 +00:00
parent 779a231259
commit ec654be45e
3 changed files with 34 additions and 30 deletions

View File

@@ -1257,7 +1257,6 @@ class Gramps(GrampsDBCallback.GrampsDBCallback):
self.progress.set_fraction(0)
def read_file(self,filename,callback=None):
self.topWindow.set_resizable(False)
mode = "w"
filename = os.path.normpath(os.path.abspath(filename))
@@ -1300,7 +1299,6 @@ class Gramps(GrampsDBCallback.GrampsDBCallback):
_('%s could not be opened.' % filename) + '\n' + msg[1])
return 0
self.topWindow.set_resizable(True)
# Undo/Redo always start with standard labels and insensitive state
self.undo_callback(None)
self.redo_callback(None)