Added set_header() to ProgressMeter from Bob Harm. Changes to stylesheet once more.
svn: r12856
This commit is contained in:
parent
874d43f2aa
commit
c56a762c91
@ -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;
|
||||||
|
@ -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.
|
||||||
|
Loading…
Reference in New Issue
Block a user