From 012b98fea4b429980c09853b1c57d6d4d69371d4 Mon Sep 17 00:00:00 2001 From: Martin Sivak Date: Tue, 31 Aug 2010 14:11:44 +0200 Subject: Fix Configure dialog in Combo mode - after selection it wasn't saving the value --- frontend/frontend_gtk.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/frontend_gtk.py b/frontend/frontend_gtk.py index e3cba63..c66ed8a 100644 --- a/frontend/frontend_gtk.py +++ b/frontend/frontend_gtk.py @@ -450,7 +450,7 @@ class ListDialog(object): store[path][2] = new def changed_cb(self, combo, path, new, store): - store[path][2] = store[path][6][new] + store[path][2] = store[path][6][new][0] def destroy(self): self._dialog.destroy() -- cgit