* src/EventView.py (build_columns): Do not artificially create
an extra column. svn: r4798
This commit is contained in:
parent
f2cf13f469
commit
5b1feeff12
@ -1,3 +1,7 @@
|
|||||||
|
2005-06-07 Alex Roitman <shura@gramps-project.org>
|
||||||
|
* src/EventView.py (build_columns): Do not artificially create
|
||||||
|
an extra column.
|
||||||
|
|
||||||
2005-06-06 Alex Roitman <shura@gramps-project.org>
|
2005-06-06 Alex Roitman <shura@gramps-project.org>
|
||||||
* src/AttrEdit.py: proper type selector support.
|
* src/AttrEdit.py: proper type selector support.
|
||||||
* src/AutoComp.py (by_value): Use locale-aware sorting.
|
* src/AutoComp.py (by_value): Use locale-aware sorting.
|
||||||
|
@ -113,15 +113,16 @@ class EventView:
|
|||||||
for column in self.columns:
|
for column in self.columns:
|
||||||
self.list.remove_column(column)
|
self.list.remove_column(column)
|
||||||
|
|
||||||
column = gtk.TreeViewColumn(_('Type'), self.renderer,text=0)
|
## column = gtk.TreeViewColumn(_('Type'), self.renderer,text=0)
|
||||||
column.set_resizable(True)
|
## column.set_resizable(True)
|
||||||
column.set_min_width(225)
|
## column.set_min_width(225)
|
||||||
column.set_clickable(True)
|
## column.set_clickable(True)
|
||||||
column.connect('clicked',self.column_clicked,0)
|
## column.connect('clicked',self.column_clicked,0)
|
||||||
self.list.append_column(column)
|
## self.list.append_column(column)
|
||||||
self.columns = [column]
|
## self.columns = [column]
|
||||||
|
self.columns = []
|
||||||
|
|
||||||
index = 1
|
index = 0
|
||||||
for pair in self.parent.db.get_event_column_order():
|
for pair in self.parent.db.get_event_column_order():
|
||||||
if not pair[0]:
|
if not pair[0]:
|
||||||
continue
|
continue
|
||||||
|
Loading…
Reference in New Issue
Block a user