* src/MapView.py: Dont fail if xearth is not installed
svn: r5066
This commit is contained in:
parent
3aae6812a7
commit
5f3fb997c1
@ -1,3 +1,6 @@
|
|||||||
|
2005-08-12 Martin Hawlisch <Martin.Hawlisch@gmx.de>
|
||||||
|
* src/MapView.py: Dont fail if xearth is not installed
|
||||||
|
|
||||||
2005-08-12 Don Allingham <don@gramps-project.org>
|
2005-08-12 Don Allingham <don@gramps-project.org>
|
||||||
* src/Navigation.py: Don't disable the interface all the time.
|
* src/Navigation.py: Don't disable the interface all the time.
|
||||||
|
|
||||||
@ -6,8 +9,8 @@
|
|||||||
* src/gramps_main.py: Run ArgHandler with new arguments.
|
* src/gramps_main.py: Run ArgHandler with new arguments.
|
||||||
|
|
||||||
2005-08-12 Martin Hawlisch <Martin.Hawlisch@gmx.de>
|
2005-08-12 Martin Hawlisch <Martin.Hawlisch@gmx.de>
|
||||||
* src/MapView.py: Corrected coordinate handling; Show all location in map;
|
* src/MapView.py: Corrected coordinate handling; Show all locations
|
||||||
fetch locations from xearth config file
|
in map; fetch locations from xearth config file
|
||||||
|
|
||||||
2005-08-12 Richard Taylor <rjt-gramps@thegrindstone.me.uk>
|
2005-08-12 Richard Taylor <rjt-gramps@thegrindstone.me.uk>
|
||||||
* src/EditRepository.py: changes to work with ViewManager changes
|
* src/EditRepository.py: changes to work with ViewManager changes
|
||||||
|
@ -364,10 +364,11 @@ class MapView(PageView.PageView):
|
|||||||
self.zoom_map.set_guide(self.guide_map)
|
self.zoom_map.set_guide(self.guide_map)
|
||||||
|
|
||||||
# And the place list
|
# And the place list
|
||||||
d = self.get_xearth_markers()
|
try:
|
||||||
if not d:
|
d = self.get_xearth_markers()
|
||||||
d = data
|
self.place_list_view = MapPlacesList( d)
|
||||||
self.place_list_view = MapPlacesList( d)
|
except:
|
||||||
|
self.place_list_view = MapPlacesList( data)
|
||||||
self.place_list_view.set_size_request(128,-1)
|
self.place_list_view.set_size_request(128,-1)
|
||||||
vport = gtk.ScrolledWindow()
|
vport = gtk.ScrolledWindow()
|
||||||
vbox.pack_start(vport,True,True,0)
|
vbox.pack_start(vport,True,True,0)
|
||||||
|
Loading…
Reference in New Issue
Block a user