From db5e321fe058d1079cce87da05e4fa50e3fd5509 Mon Sep 17 00:00:00 2001 From: Worros Date: Mon, 30 Nov 2009 10:53:15 +0800 Subject: [PATCH] Fix obvious typo --- pyfpdb/HUD_main.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pyfpdb/HUD_main.py b/pyfpdb/HUD_main.py index 2eb34d2d..4dea5ad7 100755 --- a/pyfpdb/HUD_main.py +++ b/pyfpdb/HUD_main.py @@ -143,11 +143,11 @@ class HUD_main(object): self.hud_dict[table_name].hud_params['h_agg_bb_mult'] = 1 # sqlcoder: I forget why these are set to true (aren't they ignored from now on?) # but I think it's needed: - self.hud_params['aggregate_ring'] == True - self.hud_params['h_aggregate_ring'] == True + self.hud_params['aggregate_ring'] = True + self.hud_params['h_aggregate_ring'] = True # so maybe the tour ones should be set as well? does this fix the bug I see mentioned? self.hud_params['aggregate_tour'] = True - self.hud_params['h_aggregate_tour'] == True + self.hud_params['h_aggregate_tour'] = True [aw.update_data(new_hand_id, self.db_connection) for aw in self.hud_dict[table_name].aux_windows] gobject.idle_add(idle_func)