From 96a1e6774920c5a10f838cade3f54aaa36a17810 Mon Sep 17 00:00:00 2001 From: Stephen Boddy Date: Mon, 6 Feb 2017 17:32:30 +0100 Subject: [PATCH] Fix an exception with an unexpected keyword getting passed to set_cursor --- terminatorlib/prefseditor.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/terminatorlib/prefseditor.py b/terminatorlib/prefseditor.py index fe25eac5..e0b5e989 100755 --- a/terminatorlib/prefseditor.py +++ b/terminatorlib/prefseditor.py @@ -1189,8 +1189,7 @@ class PrefsEditor: res = model.append([name, True]) if res: path = model.get_path(res) - treeview.set_cursor(path, focus_column=treeview.get_column(0), - start_editing=True) + treeview.set_cursor(path, start_editing=True) self.config.save()