Minor fixes to hud setup code

This commit is contained in:
Mika Bostrom 2009-10-14 19:33:19 +03:00
parent a232a94eb1
commit 54d309f797
2 changed files with 3 additions and 3 deletions

View File

@ -660,7 +660,7 @@ class Config:
try: hui['hud_style'] = self.ui.hud_style
except: hui['hud_style'] = 'A'
try: hui['hud_days'] = self.ui.hud_days
try: hui['hud_days'] = int(self.ui.hud_days)
except: hui['hud_days'] = 90
try: hui['agg_bb_mult'] = self.ui.agg_bb_mult
@ -677,7 +677,7 @@ class Config:
try: hui['h_hud_style'] = self.ui.h_hud_style
except: hui['h_hud_style'] = 'S'
try: hui['h_hud_days'] = self.ui.h_hud_days
try: hui['h_hud_days'] = int(self.ui.h_hud_days)
except: hui['h_hud_days'] = 30
try: hui['h_agg_bb_mult'] = self.ui.h_agg_bb_mult

View File

@ -82,7 +82,7 @@
<hud_ui
aggregate_ring_game_stats="False"
aggregate_tourney_stats="False"
stat_aggregation_style="A"
stat_aggregation_range="A"
aggregation_days="90"
aggregation_level_multiplier="1"