From 50ce0a1f20dd15423a4314c8e24c8b9180c158a9 Mon Sep 17 00:00:00 2001 From: Chris Moore Date: Wed, 18 May 2011 12:04:16 -0700 Subject: [PATCH] In the "Games" filter, 27_3draw was showing up as 273draw with the 3 underlined. Fix this. --- pyfpdb/Filters.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyfpdb/Filters.py b/pyfpdb/Filters.py index 7d83aca6..85f93f48 100644 --- a/pyfpdb/Filters.py +++ b/pyfpdb/Filters.py @@ -411,7 +411,7 @@ class Filters(threading.Thread): #end def createTourneyTypeLine def createGameLine(self, hbox, game): - cb = gtk.CheckButton(game) + cb = gtk.CheckButton(game.replace("_", "__")) cb.connect('clicked', self.__set_game_select, game) hbox.pack_start(cb, False, False, 0) cb.set_active(True) -- 2.11.4.GIT