Rate limiting gconf is pointless, users will have to live with whatever happens until it happens and I boggle at it

This commit is contained in:
Chris Jones 2007-09-20 22:45:32 +01:00
parent ebe23f5933
commit aa23129e08
1 changed files with 0 additions and 6 deletions

View File

@ -34,7 +34,6 @@ import getopt
import math
class TerminatorTerm:
lastreconfigure = 0
# Our settings
# FIXME: Add commandline and/or gconf options to change these
@ -131,11 +130,6 @@ class TerminatorTerm:
self._vte.fork_command (command = shell, argv = args, envv = [], loglastlog = login, logwtmp = update_records, logutmp = update_records)
def reconfigure_vte (self):
if ((self.lastreconfigure != 0) and (time.time () - self.lastreconfigure) < 5):
# Rate limit
return
self.lastreconfigure = time.time ()
# Set our emulation
self._vte.set_emulation (self.defaults['emulation'])