* src/ListModel.py: set the cell renderers to a fixed size

to improve performance
* src/PlaceView.py: set the cell renderers to a fixed size
to improve performance
* src/SourceView.py: set the cell renderers to a fixed size
to improve performance
* src/Sources.py: set the cell renderers to a fixed size
to improve performance
* src/Utils.py: set the cell renderers to a fixed size
to improve performance
* src/gramps_main.py: prevent double loading of place_view


svn: r1931
This commit is contained in:
Don Allingham
2003-07-27 03:50:57 +00:00
parent c54e12ea51
commit 2d71fb6768
6 changed files with 8 additions and 4 deletions

View File

@ -70,6 +70,7 @@ class SourceView:
for title in self.column_headers:
renderer = gtk.CellRendererText ()
renderer.set_fixed_height_from_font(1)
column = gtk.TreeViewColumn (title[0], renderer, text=colno)
colno = colno + 1
column.set_clickable (gtk.TRUE)