Minor fix to kees' gconf improvement

This commit is contained in:
Chris Jones 2007-11-27 16:58:36 +00:00
parent 397bac42af
commit 6a5431e253
1 changed files with 1 additions and 1 deletions

View File

@ -78,7 +78,7 @@ class TerminatorTerm:
self.profile = None
for dir in self.gconf_client.all_dirs(self.defaults['profile_dir']):
if self.gconf_client.get_string (dir + "/title") == profile:
if self.gconf_client.get_string (dir + "/visible_name") == profile:
self.profile = dir
break