Restored underline for currently selected option in SelectInput that I accidentally did in few commits ago

This commit is contained in:
Asmageddon 2012-03-13 20:52:51 +01:00
parent 5796e025e6
commit 68db1d4c13
1 changed files with 1 additions and 1 deletions

View File

@ -564,7 +564,7 @@ class SelectInput(InputField):
elif self.additional_formatting: elif self.additional_formatting:
self.parent.add_string(row,"[{!white,blue!}%s{!white,black!}]"%opt,screen,off,False,True) self.parent.add_string(row,"[{!white,blue!}%s{!white,black!}]"%opt,screen,off,False,True)
else: else:
self.parent.add_string(row,"[{!white,black!}%s{!white,black!}]"%opt,screen,off,False,True) self.parent.add_string(row,"[{!white,black,underline!}%s{!white,black!}]"%opt,screen,off,False,True)
else: else:
self.parent.add_string(row,"[%s]"%opt,screen,off,False,True) self.parent.add_string(row,"[%s]"%opt,screen,off,False,True)
off += len(opt)+3 off += len(opt)+3