* 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:
Alex Roitman
2005-06-08 15:50:19 +00:00
parent 3a29a38b53
commit 5ae515056b
6 changed files with 72 additions and 47 deletions

View File

@ -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)