diff --git a/terminatorlib/config.py b/terminatorlib/config.py
index 885f943f..930b30b6 100755
--- a/terminatorlib/config.py
+++ b/terminatorlib/config.py
@@ -229,7 +229,6 @@ DEFAULTS = {
#729fcf:#ad7fa8:#34e2e2:#eeeeec',
'word_chars' : ',./?%:_',
'mouse_autohide' : True,
- 'update_records' : True,
'login_shell' : False,
'use_custom_command' : False,
'custom_command' : '',
diff --git a/terminatorlib/preferences.glade b/terminatorlib/preferences.glade
index 8159eabb..533e6b62 100644
--- a/terminatorlib/preferences.glade
+++ b/terminatorlib/preferences.glade
@@ -1962,7 +1962,7 @@
- 3
- 4
+ 2
+ 3
GTK_FILL
@@ -2046,8 +2028,8 @@
exit_action_combobox
- 4
- 5
+ 3
+ 4
GTK_FILL
@@ -2067,8 +2049,8 @@
1
2
- 3
- 4
+ 2
+ 3
@@ -2089,8 +2071,8 @@
1
2
- 4
- 5
+ 3
+ 4
diff --git a/terminatorlib/prefseditor.py b/terminatorlib/prefseditor.py
index 02de5775..09706c27 100755
--- a/terminatorlib/prefseditor.py
+++ b/terminatorlib/prefseditor.py
@@ -454,9 +454,6 @@ class PrefsEditor:
# Login shell
widget = guiget('login_shell_checkbutton')
widget.set_active(self.config['login_shell'])
- # Login records
- widget = guiget('update_records_checkbutton')
- widget.set_active(self.config['update_records'])
# Use Custom command
widget = guiget('use_custom_command_checkbutton')
widget.set_active(self.config['use_custom_command'])
@@ -740,11 +737,6 @@ class PrefsEditor:
self.config['login_shell'] = widget.get_active()
self.config.save()
- def on_update_records_checkbutton_toggled(self, widget):
- """Update records setting changed"""
- self.config['update_records'] = widget.get_active()
- self.config.save()
-
def on_scroll_background_checkbutton_toggled(self, widget):
"""Scroll background setting changed"""
self.config['scroll_background'] = widget.get_active()
diff --git a/terminatorlib/terminal.py b/terminatorlib/terminal.py
index 71696e49..722dbf6b 100755
--- a/terminatorlib/terminal.py
+++ b/terminatorlib/terminal.py
@@ -1334,8 +1334,6 @@ class Terminal(Gtk.VBox):
self.cwd = cwd
def spawn_child(self, widget=None, respawn=False, debugserver=False):
- update_records = self.config['update_records']
- login = self.config['login_shell']
args = []
shell = None
command = None