parent
b6f68c03bb
commit
e4b6d9beda
@ -314,7 +314,7 @@ class GeoClose(GeoGraphyView):
|
||||
information.
|
||||
"""
|
||||
self.lifeway_layer.clear_ways()
|
||||
if not self.dbstate.is_open():
|
||||
if not self.dbstate.open:
|
||||
return
|
||||
active = self.get_active()
|
||||
if active:
|
||||
|
@ -188,7 +188,7 @@ class GeoEvents(GeoGraphyView):
|
||||
all handling of visibility is now in rebuild_trees, see that for more
|
||||
information.
|
||||
"""
|
||||
if not self.dbstate.is_open():
|
||||
if not self.dbstate.open:
|
||||
return
|
||||
active = self.uistate.get_active('Event')
|
||||
if active:
|
||||
|
@ -305,7 +305,7 @@ class GeoFamClose(GeoGraphyView):
|
||||
information.
|
||||
"""
|
||||
self.lifeway_layer.clear_ways()
|
||||
if not self.dbstate.is_open():
|
||||
if not self.dbstate.open:
|
||||
return
|
||||
active = self.get_active()
|
||||
family = self.dbstate.db.get_family_from_handle(active)
|
||||
|
@ -178,7 +178,7 @@ class GeoFamily(GeoGraphyView):
|
||||
all handling of visibility is now in rebuild_trees, see that for more
|
||||
information.
|
||||
"""
|
||||
if not self.dbstate.is_open():
|
||||
if not self.dbstate.open:
|
||||
return
|
||||
if self.uistate.get_active('Family'):
|
||||
self._createmap(self.uistate.get_active('Family'))
|
||||
|
@ -215,7 +215,7 @@ class GeoPerson(GeoGraphyView):
|
||||
all handling of visibility is now in rebuild_trees, see that for more
|
||||
information.
|
||||
"""
|
||||
if not self.dbstate.is_open():
|
||||
if not self.dbstate.open:
|
||||
return
|
||||
active = self.get_active()
|
||||
self._createmap(active)
|
||||
|
@ -189,7 +189,7 @@ class GeoPlaces(GeoGraphyView):
|
||||
all handling of visibility is now in rebuild_trees, see that for more
|
||||
information.
|
||||
"""
|
||||
if not self.dbstate.is_open():
|
||||
if not self.dbstate.open:
|
||||
return
|
||||
active = self.uistate.get_active('Place')
|
||||
if active:
|
||||
|
Loading…
Reference in New Issue
Block a user