Fix name display in HUD popup
The names are stored in UTF-8, so simply converting the name from UTF-8 to Configuration.LOCALE_ENCODING before putting the string in tooltip is enough. Neat.
This commit is contained in:
		
							parent
							
								
									7f568a52b9
								
							
						
					
					
						commit
						cb172e15ae
					
				|  | @ -62,9 +62,13 @@ import Database | |||
| re_Places = re.compile("_[0-9]$") | ||||
| re_Percent = re.compile("%$") | ||||
| 
 | ||||
| # String manipulation | ||||
| import codecs | ||||
| encoder = codecs.lookup(Configuration.LOCALE_ENCODING) | ||||
| 
 | ||||
| def do_tip(widget, tip): | ||||
|     widget.set_tooltip_text(tip) | ||||
|     (_tip, _len) = encoder.encode(tip) | ||||
|     widget.set_tooltip_text(_tip) | ||||
| 
 | ||||
| def do_stat(stat_dict, player = 24, stat = 'vpip'): | ||||
|     match = re_Places.search(stat) | ||||
|  |  | |||
		Loading…
	
		Reference in New Issue
	
	Block a user