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