summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMartin Sivak <msivak@redhat.com>2010-08-31 14:11:44 +0200
committerMartin Sivak <msivak@redhat.com>2010-08-31 14:11:44 +0200
commit012b98fea4b429980c09853b1c57d6d4d69371d4 (patch)
tree18f3e38623e6efb7545a917c24610bc295f8a999
parentd3d058d01dfd6cb5e8400adb486909baa8fc26b9 (diff)
downloadfirstaidkit-012b98fea4b429980c09853b1c57d6d4d69371d4.tar.gz
firstaidkit-012b98fea4b429980c09853b1c57d6d4d69371d4.tar.xz
firstaidkit-012b98fea4b429980c09853b1c57d6d4d69371d4.zip
Fix Configure dialog in Combo mode - after selection it wasn't saving the value
-rw-r--r--frontend/frontend_gtk.py2
1 files changed, 1 insertions, 1 deletions
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()