* src/GrampsWidgets.py: provide default instructions for place

svn: r7572
This commit is contained in:
Don Allingham 2006-11-07 02:15:37 +00:00
parent dafa578420
commit b1c9e6e76c
2 changed files with 7 additions and 2 deletions

View File

@ -1,4 +1,5 @@
2006-11-06 Don Allingham <don@gramps-project.org>
* src/GrampsWidgets.py: provide default instructions for place
* src/DataViews/_MediaView.py: cancel drag-n-drop if list is empty
* src/PageView.py: cancel drag-n-drop if list is empty
* src/ViewManager.py (ViewManager.about): destroy About dialog

View File

@ -554,8 +554,12 @@ class PlaceEntry:
self.add_del.connect('clicked', self.add_del_clicked)
self.share.connect('clicked', self.share_clicked)
obj.set_text(name)
if not self.db.readonly and not name:
obj.set_text("<i>%s</i>" % _('Drag and drop or use buttons to add or select'))
obj.set_use_markup(True)
else:
obj.set_text(name)
def after_edit(self, place):
name = "%s [%s]" % (place.get_title(),place.gramps_id)