* src/DisplayModels.py: gobject.TYPE_STRING -> str
* src/EditFamily.py: privacy widget * src/EditPerson.py: privacy widget * src/EventEdit.py: save support * src/GrampsWidgets.py: Add PrivacyButton support * src/PageView.py: make sure active before updating rows * src/edit_person.glade: privacy icons * src/gramps.glade: privacy icons svn: r5895
This commit is contained in:
@@ -126,7 +126,6 @@ class BaseModel(gtk.GenericTreeModel):
|
||||
|
||||
def delete_row_by_handle(self,handle):
|
||||
index = self.indexlist[handle]
|
||||
|
||||
self.indexlist = {}
|
||||
self.datalist = []
|
||||
i = 0
|
||||
@@ -157,7 +156,7 @@ class BaseModel(gtk.GenericTreeModel):
|
||||
def on_get_column_type(self,index):
|
||||
if index == self.tooltip_column:
|
||||
return object
|
||||
return gobject.TYPE_STRING
|
||||
return str
|
||||
|
||||
def on_get_iter(self, path):
|
||||
try:
|
||||
|
Reference in New Issue
Block a user