Handle the status bar if the active_person is None
svn: r76
This commit is contained in:
parent
02adfa2bfc
commit
3d7b30cbc5
@ -1265,18 +1265,21 @@ def change_active_person(person):
|
|||||||
#
|
#
|
||||||
#-------------------------------------------------------------------------
|
#-------------------------------------------------------------------------
|
||||||
def modify_statusbar():
|
def modify_statusbar():
|
||||||
pname = Config.nameof(active_person)
|
if active_person == None:
|
||||||
if Config.status_bar == 1:
|
statusbar.set_status("")
|
||||||
name = "[%s] %s" % (str(active_person.getId()),pname)
|
|
||||||
elif Config.status_bar == 2:
|
|
||||||
name = pname
|
|
||||||
for attr in active_person.getAttributeList():
|
|
||||||
if attr.getType() == Config.attr_name:
|
|
||||||
name = "[%s] %s" % (attr.getValue(),pname)
|
|
||||||
break
|
|
||||||
else:
|
else:
|
||||||
name = pname
|
pname = Config.nameof(active_person)
|
||||||
statusbar.set_status(name)
|
if Config.status_bar == 1:
|
||||||
|
name = "[%s] %s" % (str(active_person.getId()),pname)
|
||||||
|
elif Config.status_bar == 2:
|
||||||
|
name = pname
|
||||||
|
for attr in active_person.getAttributeList():
|
||||||
|
if attr.getType() == Config.attr_name:
|
||||||
|
name = "[%s] %s" % (attr.getValue(),pname)
|
||||||
|
break
|
||||||
|
else:
|
||||||
|
name = pname
|
||||||
|
statusbar.set_status(name)
|
||||||
|
|
||||||
#-------------------------------------------------------------------------
|
#-------------------------------------------------------------------------
|
||||||
#
|
#
|
||||||
|
Loading…
Reference in New Issue
Block a user