From 245f3f30cb11fc7077f0e1b8935d5cdfed605ae5 Mon Sep 17 00:00:00 2001 From: Neroth Date: Mon, 22 Jul 2013 17:07:42 +0200 Subject: [PATCH] Fix bug --- src/prefs.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/prefs.js b/src/prefs.js index 73a7a32..fbeadc2 100644 --- a/src/prefs.js +++ b/src/prefs.js @@ -421,7 +421,7 @@ Extends: Gtk.Box, if(typeof arguments[0] != "undefined") path = arguments[0]; this.status("Change selection to "+path); - path = new Gtk.TreePath.new_from_string(String(path)); + path = Gtk.TreePath.new_from_string(String(path)); this.treeview.get_selection().select_path(path); },