changelog the default values changes, and slightly improve the fallback behaviour of finding a profile to use

This commit is contained in:
Chris Jones 2008-01-06 22:23:16 +00:00
parent 9fa21a3132
commit 99280881e1
2 changed files with 5 additions and 0 deletions

View File

@ -15,6 +15,8 @@ terminator 0.7:
* Set the VTE widget to have a tooltip of its window title. This may be
reverted if it is annoying
* Support GNOME Terminal profile settings for backgrounds. Closes LP #180717
* Use our own default values if there is no gnome-terminal profile. Closes
LP #179315
terminator 0.6:

View File

@ -104,6 +104,9 @@ class TerminatorTerm:
if profile in profiles:
self.profile = '%s/%s'%(self.defaults['profile_dir'], profile)
else:
if profile != "Default" and "Default" in profiles:
self.profile = '%s/Default'%(self.defaults['profile_dir'])
if not self.profile:
print >> sys.stderr, _("Warning: unable to find profile %s. Continue with default values...") % profile