From 6a5431e2535dde05f9b354bb4738026b883d956a Mon Sep 17 00:00:00 2001 From: Chris Jones Date: Tue, 27 Nov 2007 16:58:36 +0000 Subject: [PATCH] Minor fix to kees' gconf improvement --- terminator | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/terminator b/terminator index 9246a899..63cbfdc5 100755 --- a/terminator +++ b/terminator @@ -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