* src/gramps_main.py (init_interface): Set proper color for new icons.
* src/gramps.glade (gramps): Label new buttons, left-align labels. * src/GrampsDbBase.py (get_event_column_order): Show date column. * src/EventView.py (Module): Add "Last Changed" column; do not hard-code handle column. * src/DisplayModels.py (EventModel.__init__): Switch column order. svn: r4807
This commit is contained in:
@ -504,20 +504,20 @@ class EventModel(BaseModel):
|
||||
self.column_description,
|
||||
self.column_id,
|
||||
self.column_type,
|
||||
self.column_change,
|
||||
self.column_date,
|
||||
self.column_place,
|
||||
self.column_cause,
|
||||
self.column_change,
|
||||
self.column_handle,
|
||||
]
|
||||
self.smap = [
|
||||
self.column_description,
|
||||
self.column_id,
|
||||
self.column_type,
|
||||
self.sort_change,
|
||||
self.column_date,
|
||||
self.column_place,
|
||||
self.column_cause,
|
||||
self.sort_change,
|
||||
self.column_handle,
|
||||
]
|
||||
BaseModel.__init__(self,db,scol,order)
|
||||
|
Reference in New Issue
Block a user