From aa23129e08eae634a381adbea1f1f3d56a4113bd Mon Sep 17 00:00:00 2001 From: Chris Jones Date: Thu, 20 Sep 2007 22:45:32 +0100 Subject: [PATCH] Rate limiting gconf is pointless, users will have to live with whatever happens until it happens and I boggle at it --- terminator | 6 ------ 1 file changed, 6 deletions(-) diff --git a/terminator b/terminator index 7097d93b..8289eb5e 100755 --- a/terminator +++ b/terminator @@ -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'])