Added set_header() to ProgressMeter from Bob Harm. Changes to stylesheet once more.

svn: r12856
This commit is contained in:
Rob G. Healey 2009-08-02 02:07:39 +00:00
parent 874d43f2aa
commit c56a762c91
2 changed files with 15 additions and 0 deletions

View File

@ -924,6 +924,16 @@ div#parents table.infolist tbody tr td.ColumnValue ol li {
----------------------------------------------------- */ ----------------------------------------------------- */
div#families table.infolist { div#families table.infolist {
margin-top:.5em; margin-top:.5em;
background-color:#FFF;
width:100%;
}
div#Families table.infolist tr.TableTitle {
border-top:solid 2px #000;
border-bottom:solid 1px #000;
}
div#Families table.infolist tr.TableTitle td {
width:100%;
text-align:center;
} }
div#families table.infolist tbody tr td.ColumnValue p { div#families table.infolist tbody tr td.ColumnValue p {
margin-top:0; margin-top:0;

View File

@ -170,6 +170,11 @@ class ProgressMeter(object):
while gtk.events_pending(): while gtk.events_pending():
gtk.main_iteration() gtk.main_iteration()
def set_header(self, text):
self.__lbl.set_text(text)
while gtk.events_pending():
gtk.main_iteration()
def __warn(self, *obj): def __warn(self, *obj):
""" """
Don't let the user close the progress dialog. Don't let the user close the progress dialog.