* src/DataViews/_MediaView.py (MediaView.add): Fix call to AddMedia
svn: r6492
This commit is contained in:
parent
835154caba
commit
147fec220a
@ -1,4 +1,5 @@
|
|||||||
2006-04-28 Don Allingham <don@gramps-project.org>
|
2006-04-28 Don Allingham <don@gramps-project.org>
|
||||||
|
* src/DataViews/_MediaView.py (MediaView.add): Fix call to AddMedia
|
||||||
* src/ViewManager.py: add ScratchPad to the View menu
|
* src/ViewManager.py: add ScratchPad to the View menu
|
||||||
* src/Editors/_EditFamily.py: Fix tooltips
|
* src/Editors/_EditFamily.py: Fix tooltips
|
||||||
* src/glade/gramps.glade: remove predefined tooltips
|
* src/glade/gramps.glade: remove predefined tooltips
|
||||||
|
@ -165,7 +165,7 @@ class MediaView(PageView.ListView):
|
|||||||
def add(self,obj):
|
def add(self,obj):
|
||||||
"""Add a new media object to the media list"""
|
"""Add a new media object to the media list"""
|
||||||
import AddMedia
|
import AddMedia
|
||||||
am = AddMedia.AddMediaObject(self.dbstate.db)
|
am = AddMedia.AddMediaObject(self.dbstate, self.uistate, [])
|
||||||
am.run()
|
am.run()
|
||||||
|
|
||||||
def remove(self,obj):
|
def remove(self,obj):
|
||||||
|
Loading…
Reference in New Issue
Block a user