diff options
author | Martin Sivak <msivak@redhat.com> | 2010-08-31 14:11:44 +0200 |
---|---|---|
committer | Martin Sivak <msivak@redhat.com> | 2010-08-31 14:11:44 +0200 |
commit | 012b98fea4b429980c09853b1c57d6d4d69371d4 (patch) | |
tree | 18f3e38623e6efb7545a917c24610bc295f8a999 | |
parent | d3d058d01dfd6cb5e8400adb486909baa8fc26b9 (diff) | |
download | firstaidkit-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.py | 2 |
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() |